I have a text index defined like this:
{ Builders<ApplicationLog>.IndexKeys.Ascending(k => k.ApplicationId).Text(k => k.LogMessage).Descending(k => k.LastModifiedTimeTicks), base.DefaultOptions("aid_lm_lmtt_nsprsc_index") }, //Can only have one text index.
How do I use LINQ to run a search which utilizes this text index?
I have searched everywhere, cannot figure it out.