Table of Contents

Class FieldSet

Namespace
eQuantic.Core.Data.Migration
Assembly
eQuantic.Core.Data.dll

A single assignment applied by an UpdateOperation.

public sealed record FieldSet : IEquatable<FieldSet>
Inheritance
FieldSet
Implements
Inherited Members

Constructors

FieldSet(LambdaExpression, object?)

A single assignment applied by an UpdateOperation.

public FieldSet(LambdaExpression Field, object? Value)

Parameters

Field LambdaExpression

The field selector.

Value object

The value to set.

Properties

Field

The field selector.

public LambdaExpression Field { get; init; }

Property Value

LambdaExpression

Value

The value to set.

public object? Value { get; init; }

Property Value

object