innerJoin static method

JoinOnInterface innerJoin(
  1. DataSourceInterface dataSource
)

Creates an INNER JOIN with the given dataSource.

Implementation

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