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

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

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