Wydaje mi się, że szukasz In
FilterDefinition, który sprawi, że Twój Konstruktor będzie wyglądał tak;
return Builders<MyObject>.Filter.ElemMatch(
o => o.arrayProperty,
Builders<ArrayProperty>.Filter.In(y => y.string1, listToFind));
To tworzy to zapytanie
db.MyObject.find({ "arrayProperty" : { "$elemMatch" : { "string1" : { "$in" : ["a", "b", "aString"] } } } })
Aby móc korzystać z Regex, musiałbyś zbudować inne zapytanie (nie jestem na kawie, więc jest to bez żadnej gwarancji)
var listToFind = new List<string> { "a", "b", "astring" };
var regexList = listToFind.Select(x => new BsonRegularExpression(x, "i"));
var filterList = new List<FilterDefinition<MyObject>>();
foreach (var bsonRegularExpression in regexList)
{
FilterDefinition<MyObject> fil = Builders<MyObject>.Filter.ElemMatch(o => o.arrayProperty, Builders<ArrayProperty>.Filter.Regex(
x => x.string1,
bsonRegularExpression));
filterList.Add(fil);
}
var orFilter = Builders<MyObject>.Filter.Or(filterList);
var result = collection.Find(orFilter).ToList();
Który buduje zapytanie follow
db.MyObject.find({ "$or" : [{ "arrayProperty" : { "$elemMatch" : { "string1" : /a/i } } }, { "arrayProperty" : { "$elemMatch" : { "string1" : /b/i } } }, { "arrayProperty" : { "$elemMatch" : { "string1" : /astring/i } } }] })