C# Class MongoDB.Driver.Builders.QueryNotConditionList

Inheritance: QueryComplete
Afficher le fichier Open project: Qiredev/mongo-csharp-driver

Méthodes publiques

Méthode 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 méthode

Adds a $all test to the query.
public All ( ) : QueryNotConditionList
Résultat QueryNotConditionList

All() public méthode

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

ElemMatch() public méthode

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

Exists() public méthode

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.
Résultat QueryNotConditionList

GT() public méthode

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

GTE() public méthode

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

In() public méthode

Adds a $in test to the query.
public In ( ) : QueryNotConditionList
Résultat QueryNotConditionList

In() public méthode

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

LT() public méthode

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

LTE() public méthode

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

Mod() public méthode

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.
Résultat QueryNotConditionList

NE() public méthode

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

NotIn() public méthode

Adds a $nin test to the query.
public NotIn ( ) : QueryNotConditionList
Résultat QueryNotConditionList

NotIn() public méthode

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

QueryNotConditionList() public méthode

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

Size() public méthode

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

Type() public méthode

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