CSMongo.Query.MongoQuery.All C# (CSharp) 메소드

All() 공개 메소드

Finds fields that match all value within the record
public All ( string field ) : MongoQuery
field string
리턴 MongoQuery
        public MongoQuery All(string field, params object[] values)
        {
            return this.AppendParameter(field, "$all", values);
        }

Same methods

MongoQuery::All ( string field, IEnumerable values ) : MongoQuery