C# 클래스 DbExpressions.DbInsertQueryExtensions

Provides the fluent interface that targets an 'INSERT' query.
파일 보기 프로젝트 열기: seesharper/DbExpressions

공개 메소드들

메소드 설명
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.

메소드 상세

Columns() 공개 정적인 메소드

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

Columns() 공개 정적인 메소드

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

Insert() 공개 정적인 메소드

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.
리턴 DbInsertQuery

Insert() 공개 정적인 메소드

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.
리턴 DbInsertQuery

Values() 공개 정적인 메소드

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

Values() 공개 정적인 메소드

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.
리턴 DbQuery