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

Where() public method

Writes a manual function to persom a comparison on the server
public Where ( string script ) : MongoQuery
script string
return MongoQuery
        public MongoQuery Where(string script)
        {
            return this.Where(script, false);
        }

Same methods

MongoQuery::Where ( string script, bool wrapWithFunction ) : MongoQuery