I have a table which I am querying via Entity Framework:
using (Entities context = new Entities())
{
var customizations = context.Customizations.Include("aspnet_Users").ToList();
}
However, I want to included another table, "SelectedCustomizations" as a LEFT OUTER JOIN into the above query.
Any ideas?