Enumerate Stored Procedure
Hello, I'm wondering if there is a way to list all stored procedure in a database just like doing Mapping.GetTables() or Mapping.GetFunctions()
Hello, I'm wondering if there is a way to list all stored procedure in a database just like doing Mapping.GetTables() or Mapping.GetFunctions()
Comments
Stored procedures are not part of the mapping, but you can still list them via Reflection:
Thanks Joe, That's awesome