| QueryCreate Method (String, BsonValue) | 
 
            Creates a query manually.
            
 
    Namespace: 
   MongoDB.Driver.Builders
    Assembly:
   MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
 Syntax
Syntaxpublic static IMongoQuery Create(
	string name,
	BsonValue condition
)
Public Shared Function Create ( 
	name As String,
	condition As BsonValue
) As IMongoQuery
static member Create : 
        name : string * 
        condition : BsonValue -> IMongoQuery 
Parameters
- name
- Type: SystemString
 The element name.
- condition
- Type: MongoDB.BsonBsonValue
 The condition.
Return Value
Type: 
IMongoQueryAn IMongoQuery.
 See Also
See Also