C# 클래스 Tortuga.Chain.CommandBuilders.DbCommandBuilder

This is the non-generic version of the base class from which all other command builders are created.
상속: IDbCommandBuilder
파일 보기 프로젝트 열기: docevaad/Chain 1 사용 예제들

공개 메소드들

메소드 설명
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