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);
        }