Having troubles loading related entities (Eager Load) with ObjectContext.CreateQuery (Entity Framework and Repositories)
问题 Here's a bunch of things I tried... hopefully you can extrapolate from it what I'm trying to do and what I'm doing wrong. Okay so I'm having problems with loading related entities when using this DoQuery: public ObjectQuery<E> DoQuery(ISpecification<E> where) { return (ObjectQuery<E>)_ctx.CreateQuery<E>("[" + typeof(E).Name + "]").Where(where.EvalPredicate); } If I just use this, I end up getting an object back that contains all proper parameters except the ones that are related entities...