Mogłem tworzyć indeksy tekstowe za pomocą tego polecenia:
collection.Indexes.CreateOne(Builders<searchFileByAuthor>.IndexKeys.Text(x=>x.subject));
I wtedy mógłbym indeksować zapytania w ten sposób:
collection.Find(Builders<searchFileByAuthor>.Filter.Text("coffe")).ToList();
searchFileByAuthor
to tylko moje fałszywe zajęcia z tematem:
public class searchFileByAuthor
{
public int Id { get; set; }
public string subject { get; set; }
}