Share via


IMutableElementType.SetValueComparer Method

Definition

Overloads

SetValueComparer(ValueComparer)

Sets the custom ValueComparer for elements of the collection.

SetValueComparer(Type)

Sets the custom ValueComparer for elements of the collection.

SetValueComparer(ValueComparer)

Sets the custom ValueComparer for elements of the collection.

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

SetValueComparer(Type)

Sets the custom ValueComparer for elements of the collection.

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

Parameters

comparerType
Type

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

Applies to