Pomocí tohoto příkazu bych mohl vytvořit textové indexy:
collection.Indexes.CreateOne(Builders<searchFileByAuthor>.IndexKeys.Text(x=>x.subject));
A pak bych se mohl dotazovat na index tímto způsobem:
collection.Find(Builders<searchFileByAuthor>.Filter.Text("coffe")).ToList();
searchFileByAuthor
je jen moje falešná třída s polem předmětu:
public class searchFileByAuthor
{
public int Id { get; set; }
public string subject { get; set; }
}