C# Class DbExpressions.DbDeleteQueryExtensions

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

Public Methods

Method Description
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.

Method Details

Delete() public static method

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.
return DbDeleteQuery

Delete() public static method

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.
return DbDeleteQuery