Method Matches
Matches(Expression<Func<TDocument, string>>, BsonRegularExpression)
Tests that the value of the named element matches a regular expression (see $regex).
public static IMongoQuery Matches(Expression<Func<TDocument, string>> memberExpression, BsonRegularExpression regex)
Parameters
memberExpression
Expression<Func<TDocument, string>>The member expression representing the element to test.
regex
BsonRegularExpressionThe regex.
Returns
- IMongoQuery
An IMongoQuery.
Matches(Expression<Func<TDocument, IEnumerable<string>>>, BsonRegularExpression)
Tests that any of the values in the named array element matches a regular expression (see $regex).
public static IMongoQuery Matches(Expression<Func<TDocument, IEnumerable<string>>> memberExpression, BsonRegularExpression regex)
Parameters
memberExpression
Expression<Func<TDocument, IEnumerable<string>>>The member expression representing the element to test.
regex
BsonRegularExpressionThe regex.
Returns
- IMongoQuery
An IMongoQuery.