Interface UserQuery.IOrderByQueryColumns

  • All Known Implementing Classes:
    UserQuery.OrderByColumnQuery, UserQuery.OrderByQuery
    Enclosing class:
    UserQuery

    public static interface UserQuery.IOrderByQueryColumns
    Provides methods to order the result by columns of IUser.

    Example:

    UserQuery.create()
      .orderBy()
        .fullName().descending()
        .name();
    Corresponds to SQL:
    SELECT * FROM IWA_User
      ORDER BY
        FullName DESC,
        Name ASC
        

    API:
    This is a public API.