GeometryValueComparer<TGeometry> Class

Definition

Value snapshotting and comparison logic for NetTopologySuite.Geometries.Geometry instances.

public class GeometryValueComparer<TGeometry> : Microsoft.EntityFrameworkCore.ChangeTracking.ValueComparer<TGeometry>
type GeometryValueComparer<'Geometry> = class
    inherit ValueComparer<'Geometry>
Public Class GeometryValueComparer(Of TGeometry)
Inherits ValueComparer(Of TGeometry)

Type Parameters

TGeometry
Inheritance
ValueComparer<TGeometry>
GeometryValueComparer<TGeometry>

Remarks

See EF Core value comparers for more information and examples.

Constructors

GeometryValueComparer<TGeometry>()

Initializes a new instance of the GeometryValueComparer<TGeometry> class.

Properties

EqualsExpression

The comparison expression.

(Inherited from ValueComparer<T>)
HashCodeExpression

The hash code expression.

(Inherited from ValueComparer<T>)
SnapshotExpression

The snapshot expression.

(Inherited from ValueComparer<T>)
Type

The type.

(Inherited from ValueComparer<T>)

Methods

Equals(Object, Object)

Compares the two instances to determine if they are equal.

(Inherited from ValueComparer<T>)
Equals(T, T)

Compares the two instances to determine if they are equal.

(Inherited from ValueComparer<T>)
ExtractEqualsBody(Expression, Expression)

Takes EqualsExpression and replaces the two parameters with the given expressions, returning the transformed body.

(Inherited from ValueComparer)
ExtractHashCodeBody(Expression)

Takes the HashCodeExpression and replaces the parameter with the given expression, returning the transformed body.

(Inherited from ValueComparer)
ExtractSnapshotBody(Expression)

Takes the SnapshotExpression and replaces the parameter with the given expression, returning the transformed body.

(Inherited from ValueComparer)
GetHashCode(Object)

Returns the hash code for the given instance.

(Inherited from ValueComparer<T>)
GetHashCode(T)

Returns the hash code for the given instance.

(Inherited from ValueComparer<T>)
Snapshot(Object)

Creates a snapshot of the given instance.

(Inherited from ValueComparer<T>)
Snapshot(T)

Creates a snapshot of the given instance.

(Inherited from ValueComparer<T>)

Extension Methods

IsDefault(ValueComparer)

Returns true if the given ValueComparer is a default EF Core implementation.

Applies to