vote up 1 vote down star

Basically I am trying to retrieve a list of stored procedure parameters using Linq to SQL? Is there a way to do this?

flag

2 Answers

vote up 1 vote down check

At design time? Just drag the stored procedure on to the LINQ designer surface.


At runtime?

You need sql like this:

SELECT *
FROM syscolumns
WHERE id =
(
  SELECT id
  FROM sysobjects
  WHERE Name = @ProcName
)

Which might be generated by LinqToSql like this:

var params = 
  db.sysobjects
  .Where(o => o.Name == ProcName)
  .SelectMany(o =>
    db.syscolumns
    .Where(c => c.id == o.id)
  )
link|flag
vote up 2 vote down

Perhaps System.Data.SqlClient.SqlCommandBuilder.DeriveParameters() will help.

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.