I am trying to play a little bit with RavenDB 4.0 RC
. I am migrating from RavenDb 3.0
to the latest version.
The problem I have is extension method IRavenQueryable<T> IQueryable<T>.Where<T>(System.Linq.Expressions.Expression<Func<T, bool>> predicate, bool exact)
What parameter exact
actually do? From my investigation when I set that to true
RavenDB is not giving me results from the queries along with Index, where part of the query is string comparison.
I couldn't find any documentation of RavenDB 4.0
just yet, so maybe anyone came across that and could give me some explanation of what that parameter is?