C# Class DbExpressions.DbInsertQueryExtensions

Provides the fluent interface that targets an 'INSERT' query.
Afficher le fichier Open project: seesharper/DbExpressions

Méthodes publiques

Méthode 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 méthode

Specifies the target columns.
public static Columns ( this dbInsertQuery ) : DbInsertQuery
dbInsertQuery this The target .
Résultat DbInsertQuery

Columns() public static méthode

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

Insert() public static méthode

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.
Résultat DbInsertQuery

Insert() public static méthode

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.
Résultat DbInsertQuery

Values() public static méthode

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

Values() public static méthode

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.
Résultat DbQuery