Hi i am using entity framework and LinQ. I have a table objects called users . i have a list called userids. i have to find all users where ids contains in the string. I hav
Put periods instead of commas.
Try
var u = context.users.Where(o=> usersid.Contains(o=> o.userid)).Select(o=> o);