Title here
Summary here
A parameter used in a procedure
public class ProcedureParameter public ProcedureParameter() public ProcedureParameter(string name, string dataType)| Type | Name | Description |
|---|---|---|
| string | name | |
| string | dataType |
public ProcedureParameter(string name, string dataType, string defaultValue)| Type | Name | Description |
|---|---|---|
| string | name | |
| string | dataType | |
| string | defaultValue |
Sql data type of the procedure parameter
public string DataType { get; set; }| Type | Description |
|---|---|
| string |
The default value of the parameter
public string DefaultValue { get; set; }| Type | Description |
|---|---|
| string |
Name of the procedure parameter
public string Name { get; set; }| Type | Description |
|---|---|
| string |
Indicates that the parameter is used as output
public bool Out { get; set; }| Type | Description |
|---|---|
| bool |
Indicates that the parameter is read only
public bool ReadOnly { get; set; }| Type | Description |
|---|---|
| bool |