var blogs1 = context.Blogs .Include(b => b.Posts.Select(p => p.Comments)) .ToList();
陈福来 2015/8/14 17:21:11
// Load all blogs, all related posts, and all related comments var blogs1 = context.Blogs .Include(b => b.Posts.Select(p => p.Comments)) .ToList();
// Load all users their related profiles, and related avatar var users1 = context.Users .Include(u => u.Profile.Avatar) .ToList();
// Load all blogs, all related posts, and all related comments // using a string to specify the relationships var blogs2 = context.Blogs .Include("Posts.Comments") .ToList();
// Load all users their related profiles, and related avatar // using a string to specify the relationships var users2 = context.Users .Include("Profile.Avatar") .ToList();