Click or drag to resize
QueryBuilder<TDocument> Class
Aids in building mongo queries based on type information.
Inheritance Hierarchy
System.Object
  MongoDB.Driver.Builders.QueryBuilder<TDocument>

Namespace: MongoDB.Driver.Builders
Assembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.3.0
Syntax
public class QueryBuilder<TDocument>

Type Parameters

TDocument
The type of the document.

The QueryBuilder< TDocument> type exposes the following members.

Constructors
  NameDescription
Public methodQueryBuilder<TDocument>
Initializes a new instance of the QueryBuilder< TDocument> class.
Top
Methods
  NameDescription
Public methodAll<TValue>
Tests that the named array element contains all of the values (see $all).
Public methodAnd(IMongoQuery[])
Tests that all the queries are true (see $and in newer versions of the server).
Public methodAnd(IEnumerable<IMongoQuery>)
Tests that all the queries are true (see $and in newer versions of the server).
Public methodBitsAllClear
Tests that the value of the named element has all of the specified bits clear.
Public methodBitsAllSet
Tests that the value of the named element has all of the specified bits set.
Public methodBitsAnyClear
Tests that the value of the named element has any of the specified bits clear.
Public methodBitsAnySet
Tests that the value of the named element has any of the specified bits set.
Public methodElemMatch<TValue>
Tests that at least one item of the named array element matches a query (see $elemMatch).
Public methodEQ<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, TValue)
Tests that any of the values in the named array element is equal to some value.
Public methodEQ<TMember>(Expression<Func<TDocument, TMember>>, TMember)
Tests that the value of the named element is equal to some value.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodExists<TMember>
Tests that an element of that name does or does not exist (see $exists).
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGeoIntersects<TMember, TCoordinates>
Tests that a location element specified by name intersects with the geometry (see $geoIntersects).
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGT<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, TValue)
Tests that any of the values in the named array element is greater than some value (see $lt).
Public methodGT<TMember>(Expression<Func<TDocument, TMember>>, TMember)
Tests that the value of the named element is greater than some value (see $gt).
Public methodGTE<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, TValue)
Tests that any of the values in the named array element is greater than or equal to some value (see $gte).
Public methodGTE<TMember>(Expression<Func<TDocument, TMember>>, TMember)
Tests that the value of the named element is greater than or equal to some value (see $gte).
Public methodIn<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, IEnumerable<TValue>)
Tests that any of the values in the named array element are equal to one of a list of values (see $in).
Public methodIn<TMember>(Expression<Func<TDocument, TMember>>, IEnumerable<TMember>)
Tests that the value of the named element is equal to one of a list of values (see $in).
Public methodLT<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, TValue)
Tests that any of the values in the named array element is less than some value (see $lt).
Public methodLT<TMember>(Expression<Func<TDocument, TMember>>, TMember)
Tests that the value of the named element is less than some value (see $lt).
Public methodLTE<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, TValue)
Tests that any of the values in the named array element is less than or equal to some value (see $lte).
Public methodLTE<TMember>(Expression<Func<TDocument, TMember>>, TMember)
Tests that the value of the named element is less than or equal to some value (see $lte).
Public methodMatches(Expression<Func<TDocument, IEnumerable<String>>>, BsonRegularExpression)
Tests that any of the values in the named array element matches a regular expression (see $regex).
Public methodMatches(Expression<Func<TDocument, String>>, BsonRegularExpression)
Tests that the value of the named element matches a regular expression (see $regex).
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodMod(Expression<Func<TDocument, IEnumerable<Int32>>>, Int64, Int64)
Tests that the any of the values in the named array element match some value (see $mod).
Public methodMod(Expression<Func<TDocument, Int32>>, Int64, Int64)
Tests that the modulus of the value of the named element matches some value (see $mod).
Public methodNE<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, TValue)
Tests that none of the values in the named array element is equal to some value (see $ne).
Public methodNE<TMember>(Expression<Func<TDocument, TMember>>, TMember)
Tests that an element does not equal the value (see $ne).
Public methodNear<TMember>(Expression<Func<TDocument, TMember>>, Double, Double)
Tests that the value of the named element is near some location (see $near).
Public methodNear<TMember>(Expression<Func<TDocument, TMember>>, Double, Double, Double)
Tests that the value of the named element is near some location (see $near).
Public methodNear<TMember>(Expression<Func<TDocument, TMember>>, Double, Double, Double, Boolean)
Tests that the value of the named element is near some location (see $near).
Public methodNear<TMember, TCoordinates>(Expression<Func<TDocument, TMember>>, GeoJsonPoint<TCoordinates>)
Tests that the value of the named element is near a point (see $near).
Public methodNear<TMember, TCoordinates>(Expression<Func<TDocument, TMember>>, GeoJsonPoint<TCoordinates>, Double)
Tests that the value of the named element is near some location (see $near).
Public methodNear<TMember, TCoordinates>(Expression<Func<TDocument, TMember>>, GeoJsonPoint<TCoordinates>, Double, Boolean)
Tests that the value of the named element is near some location (see $near).
Public methodNot
Tests that the inverse of the query is true (see $not).
Public methodNotExists<TMember>
Tests that an element of that name does not exist (see $exists).
Public methodNotIn<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, IEnumerable<TValue>)
Tests that the none of the values of the named array element is equal to any item in a list of values (see $nin).
Public methodNotIn<TMember>(Expression<Func<TDocument, TMember>>, IEnumerable<TMember>)
Tests that the value of the named element is not equal to any item in a list of values (see $nin).
Public methodOr(IMongoQuery[])
Tests that at least one of the subqueries is true (see $or).
Public methodOr(IEnumerable<IMongoQuery>)
Tests that at least one of the subqueries is true (see $or).
Public methodSize<TValue>
Tests that the size of the named array is equal to some value (see $size).
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Public methodType<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, BsonType)
Tests that any of the values in the named array element is equal to some type (see $type).
Public methodType<TValue>(Expression<Func<TDocument, IEnumerable<TValue>>>, String)
Tests that any of the values in the named array element is equal to some type (see $type).
Public methodType<TMember>(Expression<Func<TDocument, TMember>>, BsonType)
Tests that the type of the named element is equal to some type (see $type).
Public methodType<TMember>(Expression<Func<TDocument, TMember>>, String)
Tests that the type of the named element is equal to some type (see $type).
Public methodWhere
Builds a query from an expression.
Public methodWithin<TMember, TCoordinates>
Tests that the value of the named element is within the specified geometry (see $within).
Public methodWithinCircle<TMember>(Expression<Func<TDocument, TMember>>, Double, Double, Double)
Tests that the value of the named element is within a circle (see $within and $center).
Public methodWithinCircle<TMember>(Expression<Func<TDocument, TMember>>, Double, Double, Double, Boolean)
Tests that the value of the named element is within a circle (see $within and $center).
Public methodWithinPolygon<TMember>
Tests that the value of the named element is within a polygon (see $within and $polygon).
Public methodWithinRectangle<TMember>
Tests that the value of the named element is within a rectangle (see $within and $box).
Top
Extension Methods
  NameDescription
Public Extension MethodToBson
Serializes an object to a BSON byte array.
(Defined by BsonExtensionMethods.)
Public Extension MethodToBsonDocument
Serializes an object to a BsonDocument.
(Defined by BsonExtensionMethods.)
Public Extension MethodToJson
Serializes an object to a JSON string.
(Defined by BsonExtensionMethods.)
Top
See Also