Is it possible to navigate entities in Entity Framework as easily as it's done with typed datasets?
With typed-datasets you load many tables from one sproc and then simply use statements like:
//get student’s course StudentsDS.Course drCourse = drStudent.CoursesRowParent;
// get course students foreach (StudentsDS.StudentRow dr in ds.GetStudentsRows()) { … }
I have a new project and must decide if plunging into the EF trend or keep the true and tested. BTW, I read a lot of criticism of typed-datasets that is plain wrong or exaggerated.
For the new project I am going with ASP.Net MVC because I am convinced of its advantages. With EF... not so sure.