I have an application which is in ASP.NET, ADO.NET, Oracle 11g
My structure of application is as follow
There are business entity classes for every entity in my application
Employee
entity containsa. Name b. Age etc
I have written a stored procedure to fetch and insert every operation related to database using ADO.NET. It return
list<>
of Business Entities from by separate logic part.Some of the presentation logic is split into
user-controls
.- Using
jquery-ajax
to load most of the component forasynchronous load
on pages. To speed up the page. - Have used
data-caching
in my project.
Not wanted to move the project into MVC 4
for better performance. Is it a good idea to move the project to ASP.NET MVC?
I also wanted to know weather it is technically ok to change it to mvc.
I don't want to change my database logic as it is well written.
So can I use MVC?
Any suggestion on any link provided will be a good help.