このコマンドでテキストインデックスを作成できます:
collection.Indexes.CreateOne(Builders<searchFileByAuthor>.IndexKeys.Text(x=>x.subject));
そして、私がこの方法でインデックスを照会できるよりも:
collection.Find(Builders<searchFileByAuthor>.Filter.Text("coffe")).ToList();
searchFileByAuthor
件名フィールドを持つ私の偽のクラスです:
public class searchFileByAuthor
{
public int Id { get; set; }
public string subject { get; set; }
}