Ponieważ nie znalazłem wiele pomocy w wyszukiwaniu symboli wieloznacznych/wyszukiwaniu pełnotekstowym za pomocą Mongo, wymyśliłem obejście mojego wymagania.
foreach (var doc in batch)
{
if (custDictionary.ContainsKey(projectId))
{
string concatenatedCustomFields = custFieldsList.Aggregate(string.Empty,
(current, custField) =>
current +
(ds.Tables[0].Columns.Contains(custField)
? (ds.Tables[0].Rows[i][custField].GetType().Name == typeof(DBNull).Name
? string.Empty
: ((string) ds.Tables[0].Rows[i][custField]).StripHtml())
: string.Empty));
doc.Add("CustomFieldsConcatenated", concatenatedCustomFields);
}
i++;
}
Przeczytałem listę niestandardowych pól dla każdej grupy dokumentów, następnie tworzę połączone pole Mongo, a następnie używam zapytania Regex w tym polu.
Następnie, aby poprawić wydajność zapytania dodanego po indeksie
_mongoConnect.Database?.GetCollection<BsonDocument>("MyCollectionName")
.Indexes.CreateOneAsync(new BsonDocument("CustomFieldsConcatenated", "hashed"), new CreateIndexOptions { Name = "CollectionName_FieldName_Index" });