Does anyone know if there's a speed difference between a query with Entity Framework instead of SQL normal application? With entity Framework, we must manualy handle joins between tables and to my eyes, it seems like a fairly complex query.
Given a customer with many joins on State/Province, Orders, Gender, Comments, favorites products, ... etc. Suppose, 15 relations. It takes about 3 or 4 seconds to execute a simple "View" page which shows the information. For me, and my boss ( hehe ), it surely takes TOO much time.
If I write this in ordinary SQL, will it work faster?