Q How to count related objects using Where In Entity Framework I get this request
But when I turn to queryResult [0] .post.Category or queryResult [0] .post.Tags, it is always empty because I do not use Include.
Enable does not work with Projection, since microsoft says the last point here: http://msdn.microsoft.com/en-us/library/bb896317.aspx
var queryResult = (from post in posts
join comment in comments.Where(x=> x.IsPublic) on post.Id equals comment.Post.Id into g
select new
{
post,
post.Author,
post.Tags,
post.Categories,
Count = g.Count()
})
How can I get a graph in one query and enable linking with tags and categories?
Why doesn't the EF relationship fix work here?