Interface IQueryDeleteBuilder
Builds SQL DELETE
expressions.
Inherited Members
Namespace: LemonEdge.DataAccess.Core.Abstractions.Builders
Assembly: LemonEdge.DataAccess.Core.Abstractions.dll
Syntax
public interface IQueryDeleteBuilder : IQueryBuilderFiltered, IQueryBuilder
Methods
AddCustomJoin(string)
Adds custom JOIN
SQL.
Declaration
void AddCustomJoin(string customJoin)
Parameters
Type | Name | Description |
---|---|---|
string | customJoin | The SQL. |
AddDeleteOutputCol(string)
Adds a column to the OUTPUT
.
Declaration
void AddDeleteOutputCol(string col)
Parameters
Type | Name | Description |
---|---|---|
string | col | The name of the column. |
Init()
Initialises the class by clearing all local variables.
Declaration
void Init()
OutputIntoTable(string)
Adds an OUTPUT
clause.
Declaration
void OutputIntoTable(string tableName)
Parameters
Type | Name | Description |
---|---|---|
string | tableName | The target. |