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

Match() public method

Finds all records that match the provided expression
public Match ( string field, Regex expression ) : MongoQuery
field string
expression System.Text.RegularExpressions.Regex
return MongoQuery
        public MongoQuery Match(string field, Regex expression)
        {
            return this.AppendParameter(field, null, expression);
        }

Same methods

MongoQuery::Match ( string field, string expression ) : MongoQuery
MongoQuery::Match ( string field, string expression, RegexOptions options ) : MongoQuery