DeleteExpression(TableExpression, SelectExpression) Constructor
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new instance of the DeleteExpression class.
public DeleteExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression selectExpression);
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.DeleteExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.DeleteExpression
Public Sub New (table As TableExpression, selectExpression As SelectExpression)
Parameters
- table
- TableExpression
A table on which the delete operation is being applied.
- selectExpression
- SelectExpression
A select expression which is used to determine which rows to delete.
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
Entity Framework