Expand description
Traits that construct SELECT statements
Traits in this module have methods that generally map to the keyword for the corresponding clause in SQL,
unless it conflicts with a Rust keyword (such as WHERE/where).
Methods for constructing queries lives on the QueryDsl trait.
Methods for executing queries live on RunQueryDsl.
See also expression_methods and dsl.
Modules
- The traits used by
QueryDsl.
Traits
- Constructs a query that finds record(s) based on directional association with other record(s).
- Extension trait to combine queries using a combinator like
UNION,INTERSECTorEXPECTwith or withoutALLrule for duplicates - CompatibleType
i-implement-a-third-party-backend-and-opt-into-breaking-changes - Specify the
ONclause for a join statement. This will override any implicitONclause that would come fromjoinable! - Methods used to construct select statements.
- Methods used to execute queries.
- Sugar for types which implement both
AsChangesetandIdentifiable - A trait defining how to update a record and fetch the updated entry on a certain backend.