CouchN 0.2.0.7

dotnet add package CouchN --version 0.2.0.7
                    
NuGet\Install-Package CouchN -Version 0.2.0.7
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="CouchN" Version="0.2.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="CouchN" Version="0.2.0.7" />
                    
Directory.Packages.props
<PackageReference Include="CouchN" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add CouchN --version 0.2.0.7
                    
#r "nuget: CouchN, 0.2.0.7"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package CouchN@0.2.0.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=CouchN&version=0.2.0.7
                    
Install as a Cake Addin
#tool nuget:?package=CouchN&version=0.2.0.7
                    
Install as a Cake Tool

Sample usages:
         
         using (var session = new TemporarySession())
         {
               var testObject = new TestDoc { Text = "hello world" };

               var result = session.Get<TestDoc>("test");

               Assert.That(result, Is.Null);

               var info = session.Save(testObject, "test");

               testObject.Text = "hello world chagned";

               session.Save(testObject);

               testObject.Text = "hello world changed";

               info = session.Save(testObject);

               testObject.Text = "hello world changed 2";

               session.Save(testObject, info);

               session.Delete(testObject);

               result = session.Get<TestDoc>("test");

         Assert.That(result, Is.Null);
         }

         also supports some design document helpers (views and updates)
         e.g.
           session.Design("test").ViewDocs<TestDoc>("test", track: true);
           string result = session.Design("test").Update<TestDoc, string>("test", testObject);

Product Compatible and additional computed target framework versions.
.NET Framework net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
0.2.0.7 3,511 7/4/2015
0.2.0.6 2,888 9/14/2014
0.1.0.6 2,323 6/28/2014
0.1.0.5 2,282 6/28/2014
0.1.0.4 2,419 5/7/2014
0.1.0.3 2,346 5/6/2014
0.1.0.2 2,373 5/6/2014
0.1.0.1 2,269 5/6/2014
0.1.0 2,307 5/6/2014
0.0.4.32 2,580 1/3/2014
0.0.3.32 2,472 11/26/2013
0.0.2.32 2,558 6/7/2013
0.0.2.31 2,450 6/7/2013
0.0.2.30 2,443 5/14/2013
0.0.2.29 2,510 1/19/2013
0.0.2.28 2,453 1/18/2013
0.0.2.27 2,452 1/18/2013
0.0.2.26 2,428 1/6/2013
0.0.2.25 2,505 12/25/2012
0.0.2.24 2,497 12/25/2012
0.0.2.23 2,350 12/25/2012
0.0.2.22 2,451 12/25/2012
0.0.2.21 2,418 12/25/2012
0.0.2.20 2,431 12/25/2012
0.0.2.19 2,392 12/25/2012
0.0.2.18 2,401 12/25/2012
0.0.2.17 2,531 12/9/2012
0.0.2.16 2,486 12/9/2012
0.0.2.15 2,750 12/8/2012
0.0.2.14 2,618 12/8/2012
0.0.2.13 2,533 12/8/2012
0.0.2.12 2,617 12/8/2012
0.0.2.11 2,390 12/7/2012
0.0.2.10 2,847 12/7/2012
0.0.1.10 2,497 12/7/2012
0.0.0.10 2,753 10/8/2012
0.0.0.9 2,525 10/8/2012
0.0.0.8 2,531 10/4/2012
0.0.0.7 2,503 10/4/2012
0.0.0.6 2,535 10/4/2012
0.0.0.5 2,625 10/1/2012
0.0.0.4 2,655 10/1/2012
0.0.0.3 2,505 9/9/2012
0.0.0.1 2,455 9/9/2012