Interface ICommandBuilderManager
Provides an interface for command builder manager objects.
Namespace: Paradigm.ORM.Data.CommandBuilders
Assembly: Paradigm.ORM.Data.dll
Syntax
public interface ICommandBuilderManager : IDisposable
Properties
| Improve this Doc View SourceDeleteCommandBuilder
Gets the delete command builder.
Declaration
IDeleteCommandBuilder DeleteCommandBuilder { get; }
Property Value
Type | Description |
---|---|
IDeleteCommandBuilder | The delete command builder. |
InsertCommandBuilder
Gets the insert command builder.
Declaration
IInsertCommandBuilder InsertCommandBuilder { get; }
Property Value
Type | Description |
---|---|
IInsertCommandBuilder | The insert command builder. |
LastInsertIdCommandBuilder
Gets the last insert identifier command builder.
Declaration
ILastInsertIdCommandBuilder LastInsertIdCommandBuilder { get; }
Property Value
Type | Description |
---|---|
ILastInsertIdCommandBuilder | The last insert identifier command builder. |
SelectCommandBuilder
Gets the select command builder.
Declaration
ISelectCommandBuilder SelectCommandBuilder { get; }
Property Value
Type | Description |
---|---|
ISelectCommandBuilder | The select command builder. |
SelectOneCommandBuilder
Gets the select one command builder.
Declaration
ISelectOneCommandBuilder SelectOneCommandBuilder { get; }
Property Value
Type | Description |
---|---|
ISelectOneCommandBuilder | The select one command builder. |
UpdateCommandBuilder
Gets the update command builder.
Declaration
IUpdateCommandBuilder UpdateCommandBuilder { get; }
Property Value
Type | Description |
---|---|
IUpdateCommandBuilder | The update command builder. |