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