// Load all blogs and related posts
var blogs1 = context.Blogs
.Include(b => b.Posts)
.ToList(); // Load all blogs and related posts
// using a string to specify the relationship
var blogs2 = context.Blogs
.Include("Posts")
.ToList();i guess both does the same job.....am i right?
code taken from https://msdn.microsoft.com/en-us/library/jj574232(v=vs.113).aspx