Support for "in" query
For example in sql:
Select id, name from table1 where id in (1,2,3)
213
votes

-
John Sudds commented
I agree that this would be helpful, but OData doesn't support operator "in" in queries. These would still need to be translated to an "or" query by breeze, which would increase the length of the query considerably. It would be great if long queries were switched to POST automatically.
-
Christian Crowhurst commented
To avoid the possibility of hitting the 2000 approx character query string limit, POST for queries would also need to be implemented: