Joins

public class Joins: Query, WhereRouter, OrderByRouter

A Joins component represents a collection of the joins clauses of the query statement.

  • Create and chain a WHERE component for specifying the WHERE clause of the query.

    Declaration

    Swift

    public func `where`(_ whereExpression: Expression) -> Where
  • Create and chain an ORDER BY component for specifying the orderings of the query result.

    Declaration

    Swift

    public func orderBy(_ orderings: Ordering...) -> OrderBy