I have just started a new web application with asp.net mvc
and sql server 2005
... Thus far in my webform applications i used ADO.NET
... I want the same in my asp.net MVC
apllication...
I have a database in sql server 2005
with all the stored procedures
... Now i want to use those stored procedures in my MVC application... I dont use any ORM
... I want to use ADO.NET..
Any sample controller
that calls a model
which uses a stored procedure
and returns a Dataset
to the controller
and then the controller to View
to display records... Any suggestions...