C# Класс Tortuga.Chain.CommandBuilders.DbCommandBuilder

This is the non-generic version of the base class from which all other command builders are created.
Наследование: IDbCommandBuilder
Показать файл Открыть проект Примеры использования класса

Открытые методы

Метод Описание
AsNonQuery ( ) : ILink

Indicates this operation has no result set.

Execute ( object state = null ) : int?

Execute the operation synchronously.

ExecuteAsync ( CancellationToken cancellationToken, object state = null ) : Task

Execute the operation asynchronously.

ExecuteAsync ( object state = null ) : Task

Execute the operation asynchronously.

TryGetColumn ( string columnName ) : ColumnMetadata

Returns the column associated with the column name.

If the column name was not found, this will return null

Описание методов

AsNonQuery() публичный абстрактный Метод

Indicates this operation has no result set.
public abstract AsNonQuery ( ) : ILink
Результат ILink

Execute() публичный Метод

Execute the operation synchronously.
public Execute ( object state = null ) : int?
state object User defined state, usually used for logging.
Результат int?

ExecuteAsync() публичный Метод

Execute the operation asynchronously.
public ExecuteAsync ( CancellationToken cancellationToken, object state = null ) : Task
cancellationToken System.Threading.CancellationToken The cancellation token.
state object User defined state, usually used for logging.
Результат Task

ExecuteAsync() публичный Метод

Execute the operation asynchronously.
public ExecuteAsync ( object state = null ) : Task
state object User defined state, usually used for logging.
Результат Task

TryGetColumn() публичный абстрактный Метод

Returns the column associated with the column name.
If the column name was not found, this will return null
public abstract TryGetColumn ( string columnName ) : ColumnMetadata
columnName string Name of the column.
Результат Tortuga.Chain.Metadata.ColumnMetadata