IConventionProperty.SetProviderValueComparer Method

Definition

Overloads

SetProviderValueComparer(ValueComparer, Boolean)

Sets the custom ValueComparer to use for the provider values for this property.

SetProviderValueComparer(Type, Boolean)

Sets the custom ValueComparer to use for the provider values for this property.

SetProviderValueComparer(ValueComparer, Boolean)

Sets the custom ValueComparer to use for the provider values for this property.

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

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 configured value.

Applies to

SetProviderValueComparer(Type, Boolean)

Sets the custom ValueComparer to use for the provider values for this property.

public Type? SetProviderValueComparer (Type? comparerType, bool fromDataAnnotation = false);
abstract member SetProviderValueComparer : Type * bool -> Type
Public Function SetProviderValueComparer (comparerType As Type, Optional fromDataAnnotation As Boolean = false) As Type

Parameters

comparerType
Type

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

fromDataAnnotation
Boolean

Indicates whether the configuration was specified using a data annotation.

Returns

The configured value.

Applies to