You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parameter names and types always come from SQL Server metadata. Config cannot override them.
required can only come from config. SQL Server's metadata is always 0 for stored procedures, so metadata cannot determine this. Without config, all params appear required.
Default values can only come from config. SQL Server's is always NULL for stored procedures. Without config, all params appear NULL.
Descriptions can only come from config. SQL Server metadata has no description field for parameters or procedures. Without config, all params appear string.Empty.
If the config excludes a param, it is still discovered from metadata (name and type only), and will be required, have NULL default, and no description.
Desired behaviors
requiredcan only come from config. SQL Server's metadata is always 0 for stored procedures, so metadata cannot determine this. Without config, all params appearrequired.NULL.string.Empty.NULLdefault, and no description.