C# 클래스 DbExpressions.DbUpdateQueryExtensions

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

공개 메소드들

메소드 설명
Set ( this dbUpdateQuery, DbExpression target, DbExpression valueExpression ) : DbQuery

Specifies the column to be updated.

Set ( this dbUpdateQuery, DbExpression>.Func columnSelector, DbExpression>.Func valueSelector ) : DbQuery

Specifies the column to be updated.

Set ( this dbUpdateQuery, DbExpression>.Func columnSelector, object value ) : DbQuery

Specifies the column to be updated.

Update ( this dbUpdateQuery, DbExpression target ) : DbUpdateQuery

Specifies the target table to update.

Update ( this dbUpdateQuery, DbExpression>.Func targetSelector ) : DbUpdateQuery

Specifies the target table to update.

메소드 상세

Set() 공개 정적인 메소드

Specifies the column to be updated.
public static Set ( this dbUpdateQuery, DbExpression target, DbExpression valueExpression ) : DbQuery
dbUpdateQuery this The target .
target DbExpression The that represents the target table or view.
valueExpression DbExpression The that represents the new value.
리턴 DbQuery

Set() 공개 정적인 메소드

Specifies the column to be updated.
public static Set ( this dbUpdateQuery, DbExpression>.Func columnSelector, DbExpression>.Func valueSelector ) : DbQuery
dbUpdateQuery this The target .
columnSelector DbExpression>.Func A function used to specify the column to be updated.
valueSelector DbExpression>.Func A function used to specify the new value.
리턴 DbQuery

Set() 공개 정적인 메소드

Specifies the column to be updated.
public static Set ( this dbUpdateQuery, DbExpression>.Func columnSelector, object value ) : DbQuery
dbUpdateQuery this The target .
columnSelector DbExpression>.Func A function used to specify the column to be updated.
value object The new value.
리턴 DbQuery

Update() 공개 정적인 메소드

Specifies the target table to update.
public static Update ( this dbUpdateQuery, DbExpression target ) : DbUpdateQuery
dbUpdateQuery this The target
target DbExpression The that represents the target table or view.
리턴 DbUpdateQuery

Update() 공개 정적인 메소드

Specifies the target table to update.
public static Update ( this dbUpdateQuery, DbExpression>.Func targetSelector ) : DbUpdateQuery
dbUpdateQuery this The target
targetSelector DbExpression>.Func A used to /// specify the that represents the target table or view.
리턴 DbUpdateQuery