I'm migrating from RavenDB 6.0.106 to 6.2.
I have a lot of complex indexes that are not compatible with Corax. Using the UI, one can set which index type is used.
However, after perusing the RavenDB site, I have yet to find how to specify this in C# code alone. Is this even possible? If so, how is it done? Where's the documentation?
You can specify which search engine to use in 3 ways/levels:
SearchEngineType = Raven.Client.Documents.Indexes.SearchEngineType.Corax;
SearchEngineType = Raven.Client.Documents.Indexes.SearchEngineType.Lucene;