Where
public final class Where : Query, GroupByRouter, OrderByRouter, LimitRouterWhere class represents the WHERE clause of the query statement.
- 
                  
                  Create and chain an ORDER BY component for specifying the orderings of the query result. DeclarationSwift public func orderBy(_ orderings: OrderingProtocol...) -> OrderByParametersorderingsThe ordering objects. Return ValueThe OrderBy object. 
- 
                  
                  Create and chain an ORDER BY component for specifying the orderings of the query result. DeclarationSwift public func orderBy(_ orderings: [OrderingProtocol]) -> OrderByParametersorderingsThe ordering objects. Return ValueThe OrderBy object. 
- 
                  
                  Create and chain a GROUP BY component to group the query result. DeclarationSwift public func groupBy(_ expressions: ExpressionProtocol...) -> GroupByParametersexpressionsThe expression objects. Return ValueThe GroupBy object. 
- 
                  
                  Create and chain a GROUP BY component to group the query result. DeclarationSwift public func groupBy(_ expressions: [ExpressionProtocol]) -> GroupByParametersexpressionsThe expression objects. Return ValueThe GroupBy object. 
- 
                  
                  Create and chain a LIMIT component to limit the number query results. DeclarationSwift public func limit(_ limit: ExpressionProtocol) -> LimitParameterslimitThe limit Expression object or liternal value. Return ValueThe Limit object. 
- 
                  
                  Create and chain a LIMIT component to skip the returned results for the given offset position and to limit the number of results to not more than the given limit value. DeclarationSwift public func limit(_ limit: ExpressionProtocol, offset: ExpressionProtocol?) -> LimitParameterslimitThe limit Expression object or liternal value. offsetThe offset Expression object or liternal value. Return ValueThe Limit object. 
 Where Class Reference
        Where Class Reference