Click or drag to resize
Mapper.DeleteIf<T> Method (Cql)
Deletes from the table for the POCO type specified (T) using the Cql query specified. Prepends "DELETE FROM tablename " to the CQL statement you specify, getting the tablename appropriately from the POCO Type T.

Returns information whether it was applied or not. If it was not applied, it returns details of the existing values.

Namespace: Cassandra.Mapping
Assembly: Cassandra (in Cassandra.dll) Version: 3.5.0
Syntax
C#
public AppliedInfo<T> DeleteIf<T>(
	Cql cql
)

Parameters

cql
Type: Cassandra.Mapping.Cql

Type Parameters

T

Return Value

Type: AppliedInfo<T>

Implements

IMapper.DeleteIf<T>(Cql)
See Also