Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagecsharp
    <%
    foreach(ColumnSchema cs in SourceTable.Columns)
    {
        if (cs.ExtendedProperties["CS_Default"] != null)
        {
            Response.WriteLine(cs.ExtendedProperties["CS_Default"].Value);
        }
    }
    %>

How can I view the source definition of my view or stored procedure.

You can use the CommandSchema objects CommandText property or the ViewSchema objects ViewText property to view the source definition.

How can I enumerate the input and output parameters of a stored procedure using SchemaExplorer?

...