  | 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.IOAssembly: Ookii.Jumbo (in Ookii.Jumbo.dll) Version: 0.3.0+dc1307f20e065bb638e0b73a34cd216f57e486f1
Syntaxprotected 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  TOuter
 - The outer relation's object.
 - inner  TInner
 - The inner relation's object.
 
Return Value
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