In my situation, there are identifiers {2,10,16,24,32, ...} and would like to get the rows corresponding to these identifiers from the table. How to do it in Entity infrastructure.
In SQL, I can do something like:
SELECT * FROM table WHERE id IN (2,10,16,24,32)
How to achieve this within Entity?
source
share