Basically I am trying to retrieve a list of stored procedure parameters using Linq to SQL? Is there a way to do this?
|
|
|||
|
|
|
|
At design time? Just drag the stored procedure on to the LINQ designer surface. At runtime? You need sql like this:
Which might be generated by LinqToSql like this:
|
||
|
|
|
|
Perhaps System.Data.SqlClient.SqlCommandBuilder.DeriveParameters() will help. |
||
|
|
