I am trying to create a simple application using the WebMatrix tool & Razor syntax. Hence learning a bit of Razor. I dont see a feature to create/call stored procedure's. Is this not supported?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
SQL Compact (the default database for ASP.NET Web Pages) does not support Stored Procedures. If you have access to SQL Server, you can use Stored Procedures in it (and it's full supported in ASP.NET Web Pages). |
|||
|
|
|
First create a connection to SQL Server that supports Stored Procedures. See example below of entry in web.config file that WebMatrix can create for you.
Second, connect to and run your Stored Procedure as in example below.
Third, output results of YourSP to verify everything worked.
|
|||
|
|