ICqlQueryClient Interface |
Namespace: Cassandra.Mapping
public interface ICqlQueryClient
Name | Description | |
---|---|---|
![]() | Fetch<T>(Cql) |
Gets a list of T from Cassandra using the CQL statement specified.
|
![]() | Fetch<T>(CqlQueryOptions) |
Gets a list of all T from Cassandra.
|
![]() | Fetch<T>(String,Object[]) |
Gets a list of T from Cassandra using the CQL statement and parameter values specified.
|
![]() | FetchPage<T>(Cql) |
Gets a paged list of T results from Cassandra.
Suitable for manually page through all the results of a query.
|
![]() | FetchPage<T>(CqlQueryOptions) |
Gets a paged list of T results from Cassandra using the CQL statement specified.
Suitable for manually page through all the results of a query.
|
![]() | FetchPage<T>(Int32,Byte[], String,Object[]) |
Gets a paged list of T results from Cassandra.
Suitable for manually page through all the results of a query.
|
![]() | First<T>(Cql) |
Gets the first T from Cassandra using the CQL statement specified. Will throw if no records are returned.
|
![]() | First<T>(String,Object[]) |
Gets the first T from Cassandra using the CQL statement and parameter values specified. Will throw if no
records are returned.
|
![]() | FirstOrDefault<T>(Cql) |
Gets the first T from Cassandra using the CQL statement specified. Will return the default value of T if
no records are found.
|
![]() | FirstOrDefault<T>(String,Object[]) |
Gets the first T from Cassandra using the CQL statement and parameter values specified. Will return the
default value of T is no records are found.
|
![]() | Single<T>(Cql) |
Gets a single T from Cassandra using the CQL statement specified. Will throw if no records or more than
one record is returned.
|
![]() | Single<T>(String,Object[]) |
Gets a single T from Cassandra using the CQL statement and parameter values specified. Will throw if
no records or more than one record is returned.
|
![]() | SingleOrDefault<T>(Cql) |
Gets a single T from Cassandra using the CQL statement specified. Will return the default value of T if
no records are found. Will throw if more than one record is returned.
|
![]() | SingleOrDefault<T>(String,Object[]) |
Gets a single T from Cassandra using the CQL statement and parameter values specified. Will return the
default value of T if no records are found. Will throw if more than one record is returned.
|