Expand description
The traits used by QueryDsl
.
Each trait in this module represents exactly one method from QueryDsl
.
Apps should general rely on QueryDsl
directly, rather than these traits.
However, generic code may need to include a where clause that references
these traits.
Traits§
- The
into_boxed
method - The
distinct
method - The
distinct_on
method - The
execute
method - The
filter
method - The
find
method - The
group_by
method - The
having
method - The
limit
method - The
load
method - Methods related to locking select statements
- Methods related to modifiers on locking select statements
- The
offset
method - The
or_filter
method - The
order
method - The
select
method - The
nullable
method - The
single_value
method - The
then_order_by
method
Type Aliases§
- The return type of
LoadQuery<C, U>::internal_load()