Before edit my question I\'m sorry for my poor english.
I have two classes:
public class News
{
public virtua int Id { get; set; }
public vir
In general there are two ways.
1) we have to use Projections, and project all properties to be selected explicitly. Then we have to use some deeper transformation e.g. Deep transformer here
2) we can use batch fetching, which will load all related relations in few batches. That will lead to 1 + 2(4) queries, to load all relations in separated (few) queries
For more details about projections:
For more details about batch fetching you can check this: