Method | Description | |
---|---|---|
All ( ) : |
Adds a $all test to the query.
|
|
All ( IEnumerable |
Adds a $all test to the query.
|
|
ElemMatch ( IMongoQuery query ) : |
Adds an $elemMatch test to the query.
|
|
Exists ( bool exists ) : |
Adds a $exist test to the query.
|
|
GT ( BsonValue value ) : |
Adds a $gt test to the query.
|
|
GTE ( BsonValue value ) : |
Adds a $gte test to the query.
|
|
In ( ) : |
Adds a $in test to the query.
|
|
In ( IEnumerable |
Adds a $in test to the query.
|
|
LT ( BsonValue value ) : |
Adds a $lt test to the query.
|
|
LTE ( BsonValue value ) : |
Adds a $lte test to the query.
|
|
Mod ( int modulus, int equals ) : |
Adds a $mod test to the query.
|
|
NE ( BsonValue value ) : |
Adds a $ne test to the query.
|
|
Near ( double x, double y ) : |
Adds a $near test to the query.
|
|
Near ( double x, double y, double maxDistance ) : |
Adds a $near test to the query.
|
|
Near ( double x, double y, double maxDistance, bool spherical ) : |
Adds a $near or $nearSphere test to the query.
|
|
NotIn ( ) : |
Adds a $nin test to the query.
|
|
NotIn ( IEnumerable |
Adds a $nin test to the query.
|
|
QueryConditionList ( string name ) : System |
Initializes a new instance of the QueryConditionList class.
|
|
Size ( int size ) : |
Adds a $size test to the query.
|
|
Type ( BsonType type ) : |
Adds a $type test to the query.
|
|
WithinCircle ( double x, double y, double radius ) : |
Adds a $within/$center test to the query.
|
|
WithinCircle ( double x, double y, double radius, bool spherical ) : |
Adds a $within/$center or $within/$centerSphere test to the query.
|
|
WithinRectangle ( double lowerLeftX, double lowerLeftY, double upperRightX, double upperRightY ) : |
Adds a $within/$box test to the query.
|
public All ( IEnumerable |
||
values | IEnumerable |
A BsonArray of values. |
return |
public ElemMatch ( IMongoQuery query ) : |
||
query | IMongoQuery | The query to match elements with. |
return |
public Exists ( bool exists ) : |
||
exists | bool | Whether to test for the existence or absence of an element. |
return |
public GT ( BsonValue value ) : |
||
value | BsonValue | The value to compare to. |
return |
public GTE ( BsonValue value ) : |
||
value | BsonValue | The value to compare to. |
return |
public In ( IEnumerable |
||
values | IEnumerable |
A BsonArray of values. |
return |
public LT ( BsonValue value ) : |
||
value | BsonValue | The value to compare to. |
return |
public LTE ( BsonValue value ) : |
||
value | BsonValue | The value to compare to. |
return |
public Mod ( int modulus, int equals ) : |
||
modulus | int | The modulus. |
equals | int | The value to compare to. |
return |
public NE ( BsonValue value ) : |
||
value | BsonValue | The value to compare to. |
return |
public Near ( double x, double y ) : |
||
x | double | The x value of the origin. |
y | double | The y value of the origin. |
return |
public Near ( double x, double y, double maxDistance ) : |
||
x | double | The x value of the origin. |
y | double | The y value of the origin. |
maxDistance | double | The max distance for a document to be included in the results. |
return |
public Near ( double x, double y, double maxDistance, bool spherical ) : |
||
x | double | The x value of the origin. |
y | double | The y value of the origin. |
maxDistance | double | The max distance for a document to be included in the results. |
spherical | bool | Whether to do a spherical search. |
return |
public NotIn ( IEnumerable |
||
values | IEnumerable |
A BsonArray of values. |
return |
public QueryConditionList ( string name ) : System | ||
name | string | The name of the element to be tested. |
return | System |
public Size ( int size ) : |
||
size | int | The size of the array. |
return |
public Type ( BsonType type ) : |
||
type | BsonType | The type. |
return |
public WithinCircle ( double x, double y, double radius ) : |
||
x | double | The x coordinate of the origin. |
y | double | The y coordinate of the origin. |
radius | double | The radius of the circle. |
return |
public WithinCircle ( double x, double y, double radius, bool spherical ) : |
||
x | double | The x coordinate of the origin. |
y | double | The y coordinate of the origin. |
radius | double | The radius of the circle. |
spherical | bool | Whether to do a spherical search. |
return |
public WithinRectangle ( double lowerLeftX, double lowerLeftY, double upperRightX, double upperRightY ) : |
||
lowerLeftX | double | The x coordinate of the lower left corner. |
lowerLeftY | double | The y coordinate of the lower left corner. |
upperRightX | double | The x coordinate of the upper right corner. |
upperRightY | double | The y coordinate of the upper right corner. |
return |