I'm currently using Entity Framework to build a Forum using ASP.NET MVC I Have 3 principal Models [Category] 1--* [Forum] 1--* [Post]
If i Had 5 Categories and each one have 4 Forums and each Forum have 1000 post and I want to display only Categories, When I do that is that mean i have selected the 20000 posts too ??
Because each Category object have a List<'Forum'> and each Forum object have List<'Post'> due to mapping and relations