[]
Adds the specified DbParameter object to the parameter collection.
public override int Add(object value)
| Type | Name | Description |
|---|---|---|
| object | value | The Value of the DbParameter to add to the collection. |
| Type | Description |
|---|---|
| int | The index of the DbParameter object in the collection. |
Adds a DbParameter object to the parameter collection.
public C1DbParameter Add(string name, string sourceColumn)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the parameter. |
| string | sourceColumn | The source column of the parameter to be mapped to. |
| Type | Description |
|---|---|
| C1DbParameter |
Adds a DbParameter object to the parameter collection.
public C1DbParameter Add(string name, DbType dbType, string sourceColumn)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the parameter. |
| DbType | dbType | The type of the parameter. |
| string | sourceColumn | The source column of the parameter to be mapped to. |
| Type | Description |
|---|---|
| C1DbParameter |