How to call stored procedures from mvc3?

I am trying to use mvc3. The online documentation says how to connect one class to one table. Does anyone have a suggestion on how to run stored procedures and return the results to a view?

+3
source share
2 answers

MVC is not responsible for access to your data. There are many technologies you can use, including

  • Normal ADO.NET
  • LINQ to SQL
  • NHibernate
  • Entity Framework
+3
source

LINQ to SQL, , - . < http://weblogs.asp.net/scottgu/archive/2007/08/16/linq-to-sql-part-6-retrieving-data-using-stored-procedures.aspx

+1

All Articles