C# 클래스 MongoDB.Driver.Builders.QueryNot

A builder for creating queries.
파일 보기 프로젝트 열기: Qiredev/mongo-csharp-driver

공개 메소드들

메소드 설명
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.

Matches ( BsonRegularExpression regex ) : QueryComplete

Adds a regular expression 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.

QueryNot ( string name ) : System

Initializes a new instance of the QueryNot class.

Size ( int size ) : QueryNotConditionList

Adds a $size test to the query.

Type ( BsonType type ) : QueryNotConditionList

Adds a $type test to the query.

메소드 상세

All() 공개 메소드

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

All() 공개 메소드

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

ElemMatch() 공개 메소드

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

Exists() 공개 메소드

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.
리턴 QueryNotConditionList

GT() 공개 메소드

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

GTE() 공개 메소드

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

In() 공개 메소드

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

In() 공개 메소드

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

LT() 공개 메소드

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

LTE() 공개 메소드

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

Matches() 공개 메소드

Adds a regular expression test to the query.
public Matches ( BsonRegularExpression regex ) : QueryComplete
regex BsonRegularExpression The regular expression to match against.
리턴 QueryComplete

Mod() 공개 메소드

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.
리턴 QueryNotConditionList

NE() 공개 메소드

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

NotIn() 공개 메소드

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

NotIn() 공개 메소드

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

QueryNot() 공개 메소드

Initializes a new instance of the QueryNot class.
public QueryNot ( string name ) : System
name string The name of the element to be tested.
리턴 System

Size() 공개 메소드

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

Type() 공개 메소드

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