Is there any alternative to this:
Organizations.Include(\"Assets\").Where(o => o.Id == id).Single()
I would like to see something like:<
Another solution is to retrieve entity name using EntitySet.Name. You code will be:
var context = new DBContext(); context.Organizations.Include(context.Assets.EntitySet.Name).Where(o => o.Id == id).Single()