join static method

Creates a JOIN with the given dataSource.

This is the same as an INNER JOIN.

Implementation

static JoinOnInterface join(DataSourceInterface dataSource) =>
    JoinOnImpl(type: JoinType.inner, dataSource: dataSource);