I am using Entity Framework on a project, but am finding the large queries, especially those which use LEFT joins, to be very tedious to write, and hard to debug.
Is
First create your view. Update Your .edmx File. then use like this.
using (ManishTempEntities obj = new ManishTempEntities()) { var a = obj.View_1.ToList(); }