Share via


ColumnValueSetter Struct

Definition

An object that represents a column = value construct in a SET clause of UPDATE command in SQL tree.

This type is typically used by database providers (and other extensions). It is generally not used in application code.

[System.Diagnostics.DebuggerDisplay("{DebuggerDisplay(),nq}")]
[System.Runtime.CompilerServices.IsReadOnly]
[System.Runtime.CompilerServices.Nullable(0)]
public readonly struct ColumnValueSetter : IEquatable<Microsoft.EntityFrameworkCore.Query.SqlExpressions.ColumnValueSetter>
public class ColumnValueSetter
[<System.Diagnostics.DebuggerDisplay("{DebuggerDisplay(),nq}")>]
[<System.Runtime.CompilerServices.IsReadOnly>]
[<System.Runtime.CompilerServices.Nullable(0)>]
type ColumnValueSetter = struct
type ColumnValueSetter = class
Public Structure ColumnValueSetter
Implements IEquatable(Of ColumnValueSetter)
Public Class ColumnValueSetter
Inheritance
ColumnValueSetter
Inheritance
ColumnValueSetter
Attributes
Implements

Constructors

Name Description
ColumnValueSetter(ColumnExpression, SqlExpression)

An object that represents a column = value construct in a SET clause of UPDATE command in SQL tree.

This type is typically used by database providers (and other extensions). It is generally not used in application code.

Properties

Name Description
Column

A column to be updated.

Value

A value to be assigned to the column.

Methods

Name Description
Deconstruct(ColumnExpression, SqlExpression)
Equals(ColumnValueSetter)
Equals(Object)

Indicates whether this instance and a specified object are equal.

GetHashCode()

Returns the hash code for this instance.

ToString()

Operators

Name Description
Equality(ColumnValueSetter, ColumnValueSetter)
Inequality(ColumnValueSetter, ColumnValueSetter)

Applies to