W końcu znalazłem rozwiązanie tego problemu, po wielu poszukiwaniach odkryłem, że toLower()
metody nie są zaimplementowane w dostawcy mongoDb linq, więc musiałem przejść na używanie MongoQuery
Stworzyłem kilka metod rozszerzających dla stringów i list, które pobierają string lub listę jako źródło i konwertują je na wyrażenie regularne bson
internal static List<BsonValue> ConvertToCaseInsensitiveRegexList(this IEnumerable<string> source)
{
return source.Select(range => new BsonRegularExpression("/^" + range.Replace("+", @"\+") + "$/i")).Cast<BsonValue>().ToList();
}
internal static List<BsonValue> ConvertToEndsWithRegexList(this IEnumerable<string> source)
{
return source.Select(range => new BsonRegularExpression("/" + range.Replace("+", @"\+") + "$/i")).Cast<BsonValue>().ToList();
}
internal static BsonRegularExpression ToCaseInsensitiveRegex(this string source)
{
return new BsonRegularExpression("/^" + source.Replace("+", @"\+") + "$/i");
}
a potem są używane w ten sposób...
var colours = new List<string> { "Red", "blue", "white" };
var query = Query<myObject>.In(v => v.Colour, colours.ConvertToCaseInsensitiveRegexList());
this.Find(query).ToList();