c# dotaz bude vypadat takto:
Query.Matches("name", BsonRegularExpression.Create(new Regex("Joe")));
Aktualizace:
Podle návrhu @RoberStam existuje jednodušší způsob, jak to udělat:
Query.Matches("name", "Joe")
c# dotaz bude vypadat takto:
Query.Matches("name", BsonRegularExpression.Create(new Regex("Joe")));
Podle návrhu @RoberStam existuje jednodušší způsob, jak to udělat:
Query.Matches("name", "Joe")