C# Класс Tortuga.Chain.Materializers.Materializer

This is the root base class for materializers. It is used when we need to strip away the generic type arguments.
Показать файл Открыть проект

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

Метод Описание
DesiredColumns ( ) : IReadOnlyList

Returns the list of columns the materializer would like to have.

If AutoSelectDesiredColumns is returned, the command builder is allowed to choose which columns to return. If NoColumns is returned, the command builder should omit the SELECT/OUTPUT clause.

Защищенные методы

Метод Описание
OnExecutionTokenPrepared ( ExecutionTokenPreparedEventArgs e ) : void

Raises the E:ExecutionTokenPrepared event.

OnExecutionTokenPreparing ( ExecutionTokenPreparingEventArgs e ) : void

Raises the E:ExecutionTokenPreparing event.

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

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

Returns the list of columns the materializer would like to have.
If AutoSelectDesiredColumns is returned, the command builder is allowed to choose which columns to return. If NoColumns is returned, the command builder should omit the SELECT/OUTPUT clause.
public DesiredColumns ( ) : IReadOnlyList
Результат IReadOnlyList

OnExecutionTokenPrepared() защищенный Метод

Raises the E:ExecutionTokenPrepared event.
protected OnExecutionTokenPrepared ( ExecutionTokenPreparedEventArgs e ) : void
e Tortuga.Chain.Core.ExecutionTokenPreparedEventArgs The instance containing the event data.
Результат void

OnExecutionTokenPreparing() защищенный Метод

Raises the E:ExecutionTokenPreparing event.
protected OnExecutionTokenPreparing ( ExecutionTokenPreparingEventArgs e ) : void
e Tortuga.Chain.Core.ExecutionTokenPreparingEventArgs The instance containing the event data.
Результат void