In T-SQL you could have a query like:
SELECT * FROM Users WHERE User_Rights IN (\"Admin\", \"User\", \"Limited\")
How would you replicate t
Real example:
var trackList = Model.TrackingHistory.GroupBy(x => x.ShipmentStatusId).Select(x => x.Last()).Reverse();
List done_step1 = new List() {2,3,4,5,6,7,8,9,10,11,14,18,21,22,23,24,25,26 };
bool isExists = trackList.Where(x => done_step1.Contains(x.ShipmentStatusId.Value)).FirstOrDefault() != null;