Can I join a table to a list using linq? [duplicate]
You probably found out that you can’t join an Entity Framework LINQ query with a local list of entity objects, because it can’t be translated into SQL. I would preselect the database data on the account numbers only and then join in memory. var accountNumbers = lstFarmerProfiles.Select(x => x.AccountNo).ToArray(); var duplicationChecklist = from profile in … Read more