I have an application that I want to migrate to ASP.NET MVC. There are few stumbling blocks that I am not able to clear.
I am using the following components
- Linq to Entities
- MVC with Razor
Now I have three major hurdles.
- The sql query is quite complex - I want to use it as it is (without Linq )
- How to create a view that will display data from this query's resultset
- the query involves joins on tables across multiple databases (though on the same server ) - what is the best approach to make it pure-linq in future.