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.
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.
// Install CouchN as a Cake Addin
#addin nuget:?package=CouchN&version=0.2.0.7

// Install CouchN as a Cake Tool
#tool nuget:?package=CouchN&version=0.2.0.7

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,159 7/4/2015
0.2.0.6 2,612 9/14/2014
0.1.0.6 2,043 6/28/2014
0.1.0.5 2,005 6/28/2014
0.1.0.4 2,127 5/7/2014
0.1.0.3 2,047 5/6/2014
0.1.0.2 2,084 5/6/2014
0.1.0.1 1,972 5/6/2014
0.1.0 2,023 5/6/2014
0.0.4.32 2,285 1/3/2014
0.0.3.32 2,168 11/26/2013
0.0.2.32 2,263 6/7/2013
0.0.2.31 2,152 6/7/2013
0.0.2.30 2,141 5/14/2013
0.0.2.29 2,212 1/19/2013
0.0.2.28 2,157 1/18/2013
0.0.2.27 2,135 1/18/2013
0.0.2.26 2,122 1/6/2013
0.0.2.25 2,204 12/25/2012
0.0.2.24 2,200 12/25/2012
0.0.2.23 2,055 12/25/2012
0.0.2.22 2,142 12/25/2012
0.0.2.21 2,120 12/25/2012
0.0.2.20 2,134 12/25/2012
0.0.2.19 2,100 12/25/2012
0.0.2.18 2,089 12/25/2012
0.0.2.17 2,228 12/9/2012
0.0.2.16 2,164 12/9/2012
0.0.2.15 2,435 12/8/2012
0.0.2.14 2,312 12/8/2012
0.0.2.13 2,239 12/8/2012
0.0.2.12 2,320 12/8/2012
0.0.2.11 2,086 12/7/2012
0.0.2.10 2,547 12/7/2012
0.0.1.10 2,197 12/7/2012
0.0.0.10 2,456 10/8/2012
0.0.0.9 2,225 10/8/2012
0.0.0.8 2,236 10/4/2012
0.0.0.7 2,203 10/4/2012
0.0.0.6 2,239 10/4/2012
0.0.0.5 2,310 10/1/2012
0.0.0.4 2,358 10/1/2012
0.0.0.3 2,197 9/9/2012
0.0.0.1 2,148 9/9/2012