Usage
Signature:
interface DataProviderJoinInfo<BD, JK, JD>
- Generic Parameters
- Parameter - Description - BD - Type of base data - JK - Key of joined data - JD - Type of returned data 
- Typescript Import Format
- //To use this interface, import as below.
 import JoiningDataProvider= require("ojs/ojjoiningdataprovider");
 //To access this interface in your code,
 let myVariable: JoiningDataProvider.DataProviderJoinInfo;
For additional information visit:
Fields
- 
    
    foreignKeyMapping :SingleForeignKey.<BD, any, JK>|MultipleForeignKeys.<BD, any, JK>
- 
    
      The atrribute(s) mapping that returns the foreign key used to join to the joinedDataProvider.- Since:
- 10.0.0
 
 
- 
    
    joinedDataProvider :DataProvider.<JK, JD>
- 
    
      The DataProvider instance to join to.- Since:
- 10.0.0