Though I liked LINQ very much and using in our current project, sometimes we are facing problem to solve the following.
- Returning multiple results (tables) with single DB call from database and binding the same in ASP.NET.
- In case of stored procedures, using single SP we can perform multiple operations with single DB call. Using LINQ, I think, we need to send multiple requests to DB to perform multiple operations. Of course, in this case we can use LINQ to SQL but is there any other way to do this?