C# Class DbExpressions.DbInsertQueryExtensions

Provides the fluent interface that targets an 'INSERT' query.
Mostra file Open project: seesharper/DbExpressions

Public Methods

Method Description
Columns ( this dbInsertQuery ) : DbInsertQuery

Specifies the target columns.

Columns ( this dbInsertQuery, DbExpression columnsExpression ) : DbInsertQuery

Specifies the target columns.

Insert ( this dbInsertQuery, DbExpression target ) : DbInsertQuery

Creates a DbQuery{TQueryExpression} that is used to insert data into the database.

Insert ( this dbInsertQuery, DbExpression>.Func targetSelector ) : DbInsertQuery

Creates a DbQuery{TQueryExpression} that is used to insert data into the database.

Values ( this dbInsertQuery ) : DbQuery

Specifies the values to be inserted.

Values ( this dbInsertQuery, DbExpression valuesExpression ) : DbQuery

Specifies the values to be inserted.

Method Details

Columns() public static method

Specifies the target columns.
public static Columns ( this dbInsertQuery ) : DbInsertQuery
dbInsertQuery this The target .
return DbInsertQuery

Columns() public static method

Specifies the target columns.
public static Columns ( this dbInsertQuery, DbExpression columnsExpression ) : DbInsertQuery
dbInsertQuery this The target .
columnsExpression DbExpression The that represents the target columns.
return DbInsertQuery

Insert() public static method

Creates a DbQuery{TQueryExpression} that is used to insert data into the database.
public static Insert ( this dbInsertQuery, DbExpression target ) : DbInsertQuery
dbInsertQuery this The target .
target DbExpression The that represents the target table or view.
return DbInsertQuery

Insert() public static method

Creates a DbQuery{TQueryExpression} that is used to insert data into the database.
public static Insert ( this dbInsertQuery, DbExpression>.Func targetSelector ) : DbInsertQuery
dbInsertQuery this The target .
targetSelector DbExpression>.Func A used to /// specify the that represents the target table or view.
return DbInsertQuery

Values() public static method

Specifies the values to be inserted.
public static Values ( this dbInsertQuery ) : DbQuery
dbInsertQuery this The target .
return DbQuery

Values() public static method

Specifies the values to be inserted.
public static Values ( this dbInsertQuery, DbExpression valuesExpression ) : DbQuery
dbInsertQuery this The target .
valuesExpression DbExpression The that represents the values to be inserted.
return DbQuery