JoinOptions.ConditionComparer

JoinOptions.ConditionComparer property

Defines the way the features of two layers are related in a query by specifying a logic to be used in comparing values from the features.

public IEqualityComparer<object> ConditionComparer { get; set; }

Remarks

By default, it determines if two objects are equal:

EqualityComparer<object>.Default;  

See Also