Title here
Summary here
Defines a procedure
public class ProcedureDefinition public ProcedureDefinition() public ProcedureDefinition(string name, string definition)| Type | Name | Description |
|---|---|---|
| string | name | |
| string | definition |
public ProcedureDefinition(string name, string definition, List<ProcedureParameter> parameter)| Type | Name | Description |
|---|---|---|
| string | name | |
| string | definition | |
| List<ProcedureParameter> | parameter |
The sql code of the procudure
public string Definition { get; set; }| Type | Description |
|---|---|
| string |
Name of the procedure
public string Name { get; set; }| Type | Description |
|---|---|
| string |
List of parameters for the procedure
public ICollection<ProcedureParameter> Parameter { get; set; }| Type | Description |
|---|---|
| ICollection<ProcedureParameter> |