Answers for "filter by list of ids in linq"

0

filter by list of ids in linq

var userProfiles = _dataContext.UserProfile
                               .Where(t => idList.Contains(t.Id));
Posted by: Guest on December-07-2020

Code answers related to "filter by list of ids in linq"

Browse Popular Code Answers by Language