Freigeben über


ValuesExpression.Update Method

Definition

Overloads

Update(SqlParameterExpression)

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

Update(IReadOnlyList<RowValueExpression>)

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

Update(IReadOnlyList<RowValueExpression>, SqlParameterExpression)

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

Update(SqlParameterExpression)

Source:
ValuesExpression.cs

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression Update (Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression valuesParameter);
abstract member Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression
override this.Update : Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression
Public Overridable Function Update (valuesParameter As SqlParameterExpression) As ValuesExpression

Parameters

valuesParameter
SqlParameterExpression

Returns

Applies to

Update(IReadOnlyList<RowValueExpression>)

Source:
ValuesExpression.cs
Source:
ValuesExpression.cs

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression Update (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.RowValueExpression> rowValues);
abstract member Update : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.RowValueExpression> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression
override this.Update : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.RowValueExpression> -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression
Public Overridable Function Update (rowValues As IReadOnlyList(Of RowValueExpression)) As ValuesExpression

Parameters

Returns

Applies to

Update(IReadOnlyList<RowValueExpression>, SqlParameterExpression)

Source:
ValuesExpression.cs

Creates a new expression that is like this one, but using the supplied children. If all of the children are the same, it will return this expression.

public virtual Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression Update (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.RowValueExpression>? rowValues, Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression? valuesParameter);
abstract member Update : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.RowValueExpression> * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression
override this.Update : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Query.SqlExpressions.RowValueExpression> * Microsoft.EntityFrameworkCore.Query.SqlExpressions.SqlParameterExpression -> Microsoft.EntityFrameworkCore.Query.SqlExpressions.ValuesExpression
Public Overridable Function Update (rowValues As IReadOnlyList(Of RowValueExpression), valuesParameter As SqlParameterExpression) As ValuesExpression

Parameters

valuesParameter
SqlParameterExpression

Returns

Applies to