Click or drag to resize

InnerJoinRecordReaderTOuter, TInner, TResultCompare Method

When implemented in a derived class, compares an object from the outer relation to one from the inner relation based on the join condition.

Namespace: Ookii.Jumbo.IO
Assembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntax
protected abstract int Compare(
	TOuter outer,
	TInner inner
)

Parameters

outer  TOuter
The outer relation's object.
inner  TInner
The inner relation's object.

Return Value

Int32
Less than zero if outer is smaller than the inner; greater than zero if outer is greater than inner; zero if outer and inner are equal based on the join condition.
See Also