In T-SQL you could have a query like:
SELECT * FROM Users WHERE User_Rights IN (\"Admin\", \"User\", \"Limited\")
How would you replicate t
This should suffice your purpose. It compares two collections and checks if one collection has the values matching those in the other collection
fea_Features.Where(s => selectedFeatures.Contains(s.feaId))