tags:

views:

24

answers:

1

I wrote a storedprocedure like "PersonDetails" to get Records from multiple tables and filter records. I want call the procedure from controler.

Only with ADO.NET entity framework and should not use Linq language.

+1  A: 

You'd call this procedure The same way you would call a stored procedure using ADO.NET in any other application. There is nothing special in MVC that prevents one from doing this.

Wyatt Barnett