Click or drag to resize

CqlOperator Class

Contains methods to use as Linq operators.
Inheritance Hierarchy
SystemObject
  Dse.Data.LinqCqlOperator

Namespace:  Dse.Data.Linq
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public static class CqlOperator

The CqlOperator type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAppendT
Represents the CQL add assign (+=) operator for collections
Public methodStatic memberPrependT
Represents the CQL prepend operator for collections (col1 = ? + col1)
Public methodStatic memberSubstractAssignT(T)
Represents the CQL operator to remove an item from lists and sets (col1 = col1 - ?).
Public methodStatic memberSubstractAssignTKey, TValue(DictionaryTKey, TValue, TKey)
Represents the CQL operator to remove an item from a map (col1 = col1 - ?).
Public methodStatic memberSubstractAssignTKey, TValue(IDictionaryTKey, TValue, TKey)
Represents the CQL operator to remove an item from a map (col1 = col1 - ?).
Public methodStatic memberSubstractAssignTKey, TValue(SortedDictionaryTKey, TValue, TKey)
Represents the CQL operator to remove an item from a map (col1 = col1 - ?).
Top
See Also