Tôi có thể tạo chỉ mục văn bản bằng lệnh này:
collection.Indexes.CreateOne(Builders<searchFileByAuthor>.IndexKeys.Text(x=>x.subject));
Và tôi có thể truy vấn chỉ mục theo cách này:
collection.Find(Builders<searchFileByAuthor>.Filter.Text("coffe")).ToList();
searchFileByAuthor
chỉ là lớp giả của tôi với trường chủ đề:
public class searchFileByAuthor
{
public int Id { get; set; }
public string subject { get; set; }
}