I think that there's a similar post on here about this but not exactly the same...
I have two entities in my EF model - let's call them Person and Developer, with the latter inheriting from the former.
I also have an association on Developer called Qualifications. This is not visible on the Person entity.
If I'm writing a query against the context, how do I automatically .Include () the Qualifications of the Developer e.g.
from employee in context.Employee .Include ("Qualifications") select employee
doesn't work... EF complains that the relationship does not exist (I assume because it does not exist on Employee - but there's no Developer entity on the context, just Employee).