PropertyValues.Clone Method

Definition

Creates a clone of the values in this object. Changes made to the new object will not be reflected in this object and vice versa.

public abstract Microsoft.EntityFrameworkCore.ChangeTracking.PropertyValues Clone ();
abstract member Clone : unit -> Microsoft.EntityFrameworkCore.ChangeTracking.PropertyValues
Public MustOverride Function Clone () As PropertyValues

Returns

A clone of this object.

Remarks

See Accessing tracked entities in EF Core for more information and examples.

Applies to