Description
SQL supports IN queries
https://apacheignite.readme.io/docs/sql-performance-and-debugging#sql-performance-and-usability-considerations
Example SQL:
new SqlFieldsQuery("select p.name from Person p where id in (?, ?)", 1, 3);
Add support in LINQ like this:
persons.AsCacheQueryable().Where(x => new[] {1,3}.Contains(x.Value.Id))
Attachments
Issue Links
- is related to
-
IGNITE-4817 .NET: Contains fails in LINQ when subquery comes from a variable
- Resolved
- links to