I've migrated to RavenDB 2.0 and am writing a query using the IN operator which is producing an error when parsing the query.
I am using an EmbeddableDocumentStore to isolate the issue in unit tests. I am currently running RavenDB Embedded 2.0.2230. I have tried running the same tests against RavenDB.Embedded 1.2.2033-Unstable and no error is reported.
The object being queried is straight forward:
public class Company
{
public string Name { get; set; }
public string Country { get; set; }
}
My setup and query is as follows:
var documentStore = new EmbeddableDocumentStore { RunInMemory = true };
documentStore.Initialize();
using (var session = documentStore.OpenSession())
{
var list = new[] { "", "", "" };
var query = from c in session.Query<Company>()
where c.Country.In(list)
select c;
var companies = query.ToList();
}
The query compiles but I receive the following error when the query is parsed at runtime:
Lucene.Net.QueryParsers.ParseException :
Could not parse modified query:
'@in<Country>:("EMPTY_STRING","EMPTY_STRING",[[EMPTY_STRING]]) '
original was:
'@in<Country>:([[EMPTY_STRING]],[[EMPTY_STRING]],[[EMPTY_STRING]]) '
As you can see the last item in the collection has been parsed differently to the preceding items. This is what seems to be causing the problem.
Any ideas?
where c.Country.Any( c=> list.Contains( c ) )– VoidMain Jan 9 at 14:23where list.Contains(c.Country)then, no. It compiles but will not parse as a Lucene query: "Method not supported: Contains" – Nick Jan 9 at 14:45where list.Any( l => l == c.Country )and that seems to do the right thing. – VoidMain Jan 9 at 14:48