Search code examples
entity-frameworkdbset

DbSet to return multiple entries


To return a single entry I use DbSet.SingleOrDefault(l => l.UserName == userName). There must be an equivilent that will return a list of items (assuming there is more than 1). But I can't find it.

What's the Linq call on a DbSet to get a list of matching items?


Solution

  • _context.YourEntity.Where(condition).ToList()