CSMongo.Query.MongoQuery.Exists C# (CSharp) Méthode

Exists() public méthode

Finds records that the requested field exists in
public Exists ( string field ) : MongoQuery
field string
Résultat MongoQuery
        public MongoQuery Exists(string field)
        {
            return this.AppendParameter(field, "$exists", true);
        }