Class FieldSet
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
FieldLambdaExpressionThe field selector.
ValueobjectThe value to set.
Properties
Field
The field selector.
public LambdaExpression Field { get; init; }
Property Value
Value
The value to set.
public object? Value { get; init; }