| 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
)
Protected MustOverride Function Compare (
outer As TOuter,
inner As TInner
) As Integer
protected:
virtual int Compare(
TOuter outer,
TInner inner
) abstract
abstract Compare :
outer : 'TOuter *
inner : 'TInner -> int
Parameters
- outer
- Type: TOuter
The outer relation's object. - inner
- Type: TInner
The inner relation's object.
Return Value
Type:
Int32Less 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