C# 클래스 DbExpressions.DbDeleteQueryExtensions

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

공개 메소드들

메소드 설명
Delete ( this dbDeleteQuery, DbExpression target ) : DbDeleteQuery

Creates a DbQuery{TQueryExpression} that is used to delete data from the database.

Delete ( this dbDeleteQuery, DbExpression>.Func targetSelector ) : DbDeleteQuery

Creates a DbQuery{TQueryExpression} that is used to delete data from the database.

메소드 상세

Delete() 공개 정적인 메소드

Creates a DbQuery{TQueryExpression} that is used to delete data from the database.
public static Delete ( this dbDeleteQuery, DbExpression target ) : DbDeleteQuery
dbDeleteQuery this The target .
target DbExpression The that represents the target table or view.
리턴 DbDeleteQuery

Delete() 공개 정적인 메소드

Creates a DbQuery{TQueryExpression} that is used to delete data from the database.
public static Delete ( this dbDeleteQuery, DbExpression>.Func targetSelector ) : DbDeleteQuery
dbDeleteQuery this The target .
targetSelector DbExpression>.Func A used to /// specify the that represents the target table or view.
리턴 DbDeleteQuery