CSMongo.Query.MongoQuery.NotExists C# (CSharp) Method

NotExists() public method

Finds records that the requested field does not exist in
public NotExists ( string field ) : MongoQuery
field string
return MongoQuery
        public MongoQuery NotExists(string field)
        {
            return this.AppendParameter(field, "$exists", false);
        }