Method | Description | |
---|---|---|
AsNonQuery ( ) : ILink |
Indicates this operation has no result set.
|
|
Execute ( object state = null ) : int? |
Execute the operation synchronously.
|
|
ExecuteAsync ( |
Execute the operation asynchronously.
|
|
ExecuteAsync ( object state = null ) : Task |
Execute the operation asynchronously.
|
|
TryGetColumn ( string columnName ) : |
Returns the column associated with the column name. If the column name was not found, this will return null |
public Execute ( object state = null ) : int? | ||
state | object | User defined state, usually used for logging. |
return | int? |
public ExecuteAsync ( |
||
cancellationToken | The cancellation token. | |
state | object | User defined state, usually used for logging. |
return | Task |
public ExecuteAsync ( object state = null ) : Task |
||
state | object | User defined state, usually used for logging. |
return | Task |
public abstract TryGetColumn ( string columnName ) : |
||
columnName | string | Name of the column. |
return |