I have HashSet Identity values that I need to use as request values to return an ObjectResult from Entity Framework
Here's the HashSet:
HashSet<int> officeIds = new HashSet<int>();
Here is the query that I am trying to run more or less:
ObjectResult<FilingOffice> offices = ctx.FilingOffice.Where(office => office IN officeIds.ToList());
The "office => office IN officeIds.ToList ()" part of the above is what I can’t get to work, and I didn’t find any samples on the Internet for saving objects, given the list of primary keys.
ctx is System.Data.Objects.ObjectContext
source
share