Table of Contents

Interface IClrPropertySetter

Namespace
Microsoft.EntityFrameworkCore.Metadata
Assembly
Microsoft.EntityFrameworkCore.dll

Represents operations backed by compiled delegates that support setting the value of a mapped EF property.

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

public interface IClrPropertySetter

Remarks

See Implementation of database providers and extensions for more information and examples.

Methods

SetClrValue(object, object?)

Sets the value of the property.

void SetClrValue(object instance, object? value)

Parameters

instance object

The entity instance.

value object

The value to set.