leftJoin static method

JoinOnInterface leftJoin(
  1. DataSourceInterface dataSource
)

Creates a LEFT JOIN with the given dataSource.

This is the same as an LEFT OUTER JOIN.

Implementation

static JoinOnInterface leftJoin(DataSourceInterface dataSource) =>
    JoinOnImpl(type: JoinType.leftOuter, dataSource: dataSource);