Entity Framework / RIA Services Include not working
问题 I've got a SL4 / WCF RIA Services / EF 4 application. I'm having trouble getting my Included entity into my SL4 data context. In the server side service portion of the application, this is my method: [Query(IsDefault = true)] public IQueryable<ToolingGroup> GetToolingGroups() { var groups = this.ObjectContext.ToolingGroups.Include("MetaData").OrderBy(g => g.Name); return groups; //breakpoint set here } I assigned it to the var groups to allow it to be inspected before the method returns. If I