CqlSharp 0.40.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package CqlSharp --version 0.40.0
NuGet\Install-Package CqlSharp -Version 0.40.0
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="CqlSharp" Version="0.40.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add CqlSharp --version 0.40.0
#r "nuget: CqlSharp, 0.40.0"
#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 CqlSharp as a Cake Addin
#addin nuget:?package=CqlSharp&version=0.40.0

// Install CqlSharp as a Cake Tool
#tool nuget:?package=CqlSharp&version=0.40.0

CqlSharp is a high performance, asynchronous Cassandra CQL binary protocol client implementing the ADO.NET data provider interfaces.

     It's main features are:
     * The API implements the ADO.NET interfaces. If you are familiar with SqlConnection, SqlCommand, and SqlReader, you should be able to use CqlSharp with no difficulty.
     * CqlSharp is an implementation of the (new) CQL Binary Protocol and therefore requires Cassandra 1.2 and up
     * CqlSharp supports all the binary protocol v2 features: batching, paging, bound query variables, result schema caching, check-and-set (CAS) statements, and sasl-authentication
     * Implements binary protocol v3: more queries per connection, timestamp property, UDT and Tuple types, larger collections
     * Supports fast mapping of objects to query parameters, or query results to objects. Mapping is tunable by decorating your classes via Table and Column attributes.
     * Query tracing, timeouts and cancellation is supported
     * The API is predominately [asynchronous](https://msdn.microsoft.com/en-us/library/vstudio/hh191443.aspx), heavily relying on the System.Threading.Tasks namespace. Synchronous alternatives are available for convenience.
     * Configuration is done through connection strings. The simultaneous use of multiple Cassandra clusters is supported.
     * Extensive logging, including support for custom logger implementations
     
     See https://github.com/reuzel/CqlSharp/wiki/Features for an extensive feature list.

Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  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.

This package has no dependencies.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
0.41.1 490 1/20/2015
0.41.0 513 11/6/2014
0.40.1 176 10/15/2014
0.40.0 115 10/12/2014
0.39.0 230 9/7/2014
0.38.0 154 7/19/2014
0.37.0 147 6/9/2014
0.36.0 206 4/3/2014
0.35.0 98 3/25/2014
0.34.0 100 3/16/2014
0.33.0 103 3/11/2014
0.32.2 104 3/4/2014
0.32.1 101 2/23/2014
0.32.0 187 2/21/2014
0.31.0 97 1/20/2014
0.30.2 99 12/11/2013
0.30.1 96 11/5/2013
0.30.0 97 10/6/2013
0.20.1 95 9/24/2013
0.20.0 99 9/6/2013
0.14.0 99 7/28/2013
0.13.0 104 6/5/2013
0.12.0 93 5/27/2013
0.11.0 95 5/2/2013
0.10.0 98 3/21/2013
0.9.0 94 3/12/2013
0.9.0-alpha 89 3/10/2013

## Version 0.40.0 - Cql Binary Protocol v3 and new type system
     * Implements binary protocol v3: more queries per connection, timestamp property, UDT and Tuple types, larger collections.
     * Rewrite of type system, CqlType is no longer an enum but a class with subclasses for every Cassandra type.
     * Previous CqlType enum is now called CqlTypeCode.
     * Primitive Cql types can be accessed through CqlType.* static properties. Others can be constructed from .NET class, type string, or TypeCode + parameter via the CqlType.CreateType overloads.
     * CqlParameter no longer accepts different CqlTypeCodes, but requires a single CqlType
     * Added high performance and extremely flexible type conversion that prevents boxing, and even converts collection types (e.g. hashset{int} to list{long})
     * Removed explicit references to collection key and value types. They are not used separate from the corresponding CqlTypes anymore
     * CqlDataReader.GetDataTypeName(int i) now returns full string representation of the Cassandra type (e.g. map{varchar, int=""})
     * CqlDataReader.GetFieldCqlType added that returns the CqlType used for the given field
     * Removed a lot of boxing/unboxing of primitive types during serialization/deserialization
     * Implemented DbDataReader.GetFieldValue{T}(int i)
     * Supports User Defined Types. Annotate your class with CqlUserType and CqlColumn to have it correctly mapped to a Cassandra User Defined Type
     * Guesses protocol version from release_version shortening connection setup times for older clusters
     
     ## Version 0.39.0 - Performance of sync operations
     * Many changes to have synchronous API really execute synchronously, it is no longer a sync-over-async wrapper
     * Improved exception generation in case of query cancellation or timeout
     * Logging cancelled queries
     * Fix: Adding LocalOne consistency level
     
     ...

     See https://github.com/reuzel/CqlSharp/blob/master/ChangeLog.md for the full changelog.