Click or drag to resize

ICqlQueryAsyncClient.SingleOrDefaultAsync<T> Method (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.

Namespace:  Cassandra.Mapping
Assembly:  Cassandra (in Cassandra.dll) Version: 3.12.0
Syntax
C#
Task<T> SingleOrDefaultAsync<T>(
	string cql,
	params Object[] args
)

Parameters

cql
Type: System.String
args
Type:System.Object[]

Type Parameters

T

Return Value

Type: Task<T>
See Also