CSMongo.Query.MongoQuery.Exists C# (CSharp) Метод

Exists() публичный Метод

Finds records that the requested field exists in
public Exists ( string field ) : MongoQuery
field string
Результат MongoQuery
        public MongoQuery Exists(string field)
        {
            return this.AppendParameter(field, "$exists", true);
        }