Click or drag to resize

Query<TDocument>.Matches Method (Expression<Func<TDocument, String>>, BsonRegularExpression)

Tests that the value of the named element matches a regular expression (see $regex).

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.15.0+f503bf610759c13f78cff9a3c01e91453185d2ed
Syntax
public static IMongoQuery Matches(
	Expression<Func<TDocument, string>> memberExpression,
	BsonRegularExpression regex
)

Parameters

memberExpression
Type: System.Linq.Expressions.Expression<Func<TDocument, String>>
The member expression representing the element to test.
regex
Type: MongoDB.Bson.BsonRegularExpression
The regex.

Return Value

Type: IMongoQuery
An IMongoQuery.
See Also