Freigeben über


DeleteExpression Constructors

Definition

Overloads

DeleteExpression(TableExpression, SelectExpression)

Creates a new instance of the DeleteExpression class.

DeleteExpression(TableExpression, SelectExpression, ISet<String>)

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

DeleteExpression(TableExpression, SelectExpression)

Source:
DeleteExpression.cs
Source:
DeleteExpression.cs
Source:
DeleteExpression.cs

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

DeleteExpression(TableExpression, SelectExpression, ISet<String>)

Source:
DeleteExpression.cs

This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.

[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
public DeleteExpression (Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression table, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression selectExpression, System.Collections.Generic.ISet<string> tags);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
new Microsoft.EntityFrameworkCore.Query.SqlExpressions.DeleteExpression : Microsoft.EntityFrameworkCore.Query.SqlExpressions.TableExpression * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SelectExpression * System.Collections.Generic.ISet<string> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.DeleteExpression
Public Sub New (table As TableExpression, selectExpression As SelectExpression, tags As ISet(Of String))

Parameters

selectExpression
SelectExpression
tags
ISet<String>
Attributes

Applies to