Linq query with subquery as comma-separated values
- by Keith
In my application, a company can have many employees and each employee may have have multiple email addresses.
The database schema relates the tables like this:
Company - CompanyEmployeeXref - Employee - EmployeeAddressXref - Email
I am using Entity Framework and I want to create a LINQ query that returns the name of the company and a…