createRightJoin method

RightJoin createRightJoin(
  1. On on, {
  2. String as = '',
})

Creates a RightJoin object for this table with the specified join condition.

on is the join condition as is an optional alias for the joined table

Returns a RightJoin object that can be used in SQL queries.

Implementation

RightJoin createRightJoin(On on, {String as = ''}) {
  return RightJoin(name, on, as: as);
}