ColumnValueSetter Class

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.

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

Constructors

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

Column

A column to be updated.

Value

A value to be assigned to the column.

Methods

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

Determines whether the specified object is equal to the current object.

GetHashCode()

Serves as the default hash function.

ToString()

Operators

Equality(ColumnValueSetter, ColumnValueSetter)
Inequality(ColumnValueSetter, ColumnValueSetter)

Applies to