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: 2.0.0
Syntax
protected abstract int Compare(
	TOuter outer,
	TInner inner
)

Parameters

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

Return Value

Type: 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