I wanna do projection on fields of my collection and nested collection in each of entity,
I use EntityFramework 6.2
I've do that with dynamic query like bellow code...Students.Select("new (Name,Family,new(Category.Name) as Category)");
...it was worked b...