C# Class MongoDB.Driver.Builders.QueryNotConditionList

Inheritance: QueryComplete
Show file Open project: Qiredev/mongo-csharp-driver

Public Methods

Method Description
All ( ) : QueryNotConditionList

Adds a $all test to the query.

All ( IEnumerable values ) : QueryNotConditionList

Adds a $all test to the query.

ElemMatch ( IMongoQuery query ) : QueryNotConditionList

Adds an $elemMatch test to the query.

Exists ( bool exists ) : QueryNotConditionList

Adds a $exist test to the query.

GT ( BsonValue value ) : QueryNotConditionList

Adds a $gt test to the query.

GTE ( BsonValue value ) : QueryNotConditionList

Adds a $gte test to the query.

In ( ) : QueryNotConditionList

Adds a $in test to the query.

In ( IEnumerable values ) : QueryNotConditionList

Adds a $in test to the query.

LT ( BsonValue value ) : QueryNotConditionList

Adds a $lt test to the query.

LTE ( BsonValue value ) : QueryNotConditionList

Adds a $lte test to the query.

Mod ( int modulus, int equals ) : QueryNotConditionList

Adds a $mod test to the query.

NE ( BsonValue value ) : QueryNotConditionList

Adds a $ne test to the query.

NotIn ( ) : QueryNotConditionList

Adds a $nin test to the query.

NotIn ( IEnumerable values ) : QueryNotConditionList

Adds a $nin test to the query.

QueryNotConditionList ( string name ) : System

Initializes a new instance of the QueryNotConditionList.

Size ( int size ) : QueryNotConditionList

Adds a $size test to the query.

Type ( BsonType type ) : QueryNotConditionList

Adds a $type test to the query.

Method Details

All() public method

Adds a $all test to the query.
public All ( ) : QueryNotConditionList
return QueryNotConditionList

All() public method

Adds a $all test to the query.
public All ( IEnumerable values ) : QueryNotConditionList
values IEnumerable A BsonArray of values.
return QueryNotConditionList

ElemMatch() public method

Adds an $elemMatch test to the query.
public ElemMatch ( IMongoQuery query ) : QueryNotConditionList
query IMongoQuery The query to match elements with.
return QueryNotConditionList

Exists() public method

Adds a $exist test to the query.
public Exists ( bool exists ) : QueryNotConditionList
exists bool Whether to test for the existence or absence of an element.
return QueryNotConditionList

GT() public method

Adds a $gt test to the query.
public GT ( BsonValue value ) : QueryNotConditionList
value BsonValue The value to compare to.
return QueryNotConditionList

GTE() public method

Adds a $gte test to the query.
public GTE ( BsonValue value ) : QueryNotConditionList
value BsonValue The value to compare to.
return QueryNotConditionList

In() public method

Adds a $in test to the query.
public In ( ) : QueryNotConditionList
return QueryNotConditionList

In() public method

Adds a $in test to the query.
public In ( IEnumerable values ) : QueryNotConditionList
values IEnumerable A BsonArray of values.
return QueryNotConditionList

LT() public method

Adds a $lt test to the query.
public LT ( BsonValue value ) : QueryNotConditionList
value BsonValue The value to compare to.
return QueryNotConditionList

LTE() public method

Adds a $lte test to the query.
public LTE ( BsonValue value ) : QueryNotConditionList
value BsonValue The value to compare to.
return QueryNotConditionList

Mod() public method

Adds a $mod test to the query.
public Mod ( int modulus, int equals ) : QueryNotConditionList
modulus int The modulus.
equals int The value to compare to.
return QueryNotConditionList

NE() public method

Adds a $ne test to the query.
public NE ( BsonValue value ) : QueryNotConditionList
value BsonValue The value to compare to.
return QueryNotConditionList

NotIn() public method

Adds a $nin test to the query.
public NotIn ( ) : QueryNotConditionList
return QueryNotConditionList

NotIn() public method

Adds a $nin test to the query.
public NotIn ( IEnumerable values ) : QueryNotConditionList
values IEnumerable A BsonArray of values.
return QueryNotConditionList

QueryNotConditionList() public method

Initializes a new instance of the QueryNotConditionList.
public QueryNotConditionList ( string name ) : System
name string The name of the first element to be tested.
return System

Size() public method

Adds a $size test to the query.
public Size ( int size ) : QueryNotConditionList
size int The size of the array.
return QueryNotConditionList

Type() public method

Adds a $type test to the query.
public Type ( BsonType type ) : QueryNotConditionList
type BsonType The type.
return QueryNotConditionList