Answers for "c# linq i have a list of ids, i want the values"

C#
0

how to query items with any id in a list of ids linq c#

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

Code answers related to "c# linq i have a list of ids, i want the values"

C# Answers by Framework

Browse Popular Code Answers by Language