Is there a way to get stored procedures from a SQL Server 2005 Express database using C#? I would like to export all of this data in the same manner that you can script it o
Assuming you have SqlConnection object called sqlCon, simplest way is to call sqlCon.GetSchema("Procedures")
SqlConnection