Share via


IConventionElementTypeBuilder.HasValueComparer Method

Definition

Overloads

HasValueComparer(ValueComparer, Boolean)

Configures the ValueComparer for elements of the collection.

HasValueComparer(Type, Boolean)

Configures the ValueComparer for elements of the collection.

HasValueComparer(ValueComparer, Boolean)

Configures the ValueComparer for elements of the collection.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionElementTypeBuilder? HasValueComparer (Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer? comparer, bool fromDataAnnotation = false);
abstract member HasValueComparer : Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionElementTypeBuilder
Public Function HasValueComparer (comparer As ValueComparer, Optional fromDataAnnotation As Boolean = false) As IConventionElementTypeBuilder

Parameters

comparer
ValueComparer

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

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the configuration was applied, or null otherwise.

Applies to

HasValueComparer(Type, Boolean)

Configures the ValueComparer for elements of the collection.

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionElementTypeBuilder? HasValueComparer (Type? comparerType, bool fromDataAnnotation = false);
abstract member HasValueComparer : Type * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionElementTypeBuilder
Public Function HasValueComparer (comparerType As Type, Optional fromDataAnnotation As Boolean = false) As IConventionElementTypeBuilder

Parameters

comparerType
Type

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

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The same builder instance if the configuration was applied, or null otherwise.

Applies to