My entity is:

class Resource
{
    string Name;
    string EmployeeId;
}

How do I query for resources of multiple employees? I tried this:

Resource[] FindResourcesByEmployees(string[] employeeIds)
{
    return this.Session.Query<Resource>()
        .Where(r => employeeIds.Contains(r.EmployeeId))
        .ToArray();
}

However that gives me NotSupportedException: Method not supported: Contains. Then I tried the following method:

Resource[] FindResourcesByEmployees(string[] employeeIds)
{
    return this.Session.Query<Resource>()
        .Where(r => employeeIds.Any(v => v == r.EmployeeId))
        .ToArray();
}

That throws NotSupportedException: Expression type not supported: System.Linq.Expressions.TypedParameterException.

In SQL it would be something like:

SELECT * FROM resource WHERE employeeid IN (1, 2, 3)

My question is, how do I perform this query in RavenDB?

link|improve this question
This post may help you out stackoverflow.com/questions/4207739/… – JonVD Oct 26 '11 at 8:01
Nope, that case regards the entity itself containing a collection. In my case only the query contains a collection, while the entity contains no collections. – Kasper Rönning Oct 26 '11 at 12:23
feedback

1 Answer

up vote 12 down vote accepted

You can use the In operator. If I remember correctly your code should look like this:

Resource[] FindResourcesByEmployees(string[] employeeIds)
{
    return this.Session.Query<Resource>()
        .Where(r => r.EmployeeId.In<string>(employeeIds)))
        .ToArray();
}
link|improve this answer
Works like a charm, thanks! – Kasper Rönning Oct 28 '11 at 8:07
7  
One more thing: the .In<>-extension method requires "using Raven.Client.Linq" – Kasper Rönning Oct 28 '11 at 8:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.