IMutableProperty.SetValueComparer Method

Definition

Overloads

SetValueComparer(Type)

Sets the custom ValueComparer for this property.

SetValueComparer(ValueComparer)

Sets the custom ValueComparer for this property.

SetValueComparer(Type)

Sets the custom ValueComparer for this property.

public void SetValueComparer (Type? comparerType);
abstract member SetValueComparer : Type -> unit
Public Sub SetValueComparer (comparerType As Type)

Parameters

comparerType
Type

A type that derives from ValueComparer, or null to remove any previously set comparer.

Applies to

SetValueComparer(ValueComparer)

Sets the custom ValueComparer for this property.

public void SetValueComparer (Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer? comparer);
abstract member SetValueComparer : Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer -> unit
Public Sub SetValueComparer (comparer As ValueComparer)

Parameters

comparer
ValueComparer

The comparer, or null to remove any previously set comparer.

Applies to