Can specify in the where clause that I want the data that has the column value equal to some values from an array?
For example:
EntityQuery.from('Customers')
.where('DepartmentID','in','[3,5,6]');
Or how else should I do it efficiently since the table has a lot of entries an it wouldn't be efficient to retrieve all of them? Is it efficient if I do it one by one?