pub struct SelectThree<E, F, G, TOP>{ /* private fields */ }Expand description
Perform a SELECT operation on three Models
Implementationsยง
Sourceยงimpl<E, F, G, M, N, O, TOP> SelectThree<E, F, G, TOP>where
E: EntityTrait<Model = M>,
F: EntityTrait<Model = N>,
G: EntityTrait<Model = O>,
M: FromQueryResult + Sized,
N: FromQueryResult + Sized,
O: FromQueryResult + Sized,
TOP: Topology,
impl<E, F, G, M, N, O, TOP> SelectThree<E, F, G, TOP>where
E: EntityTrait<Model = M>,
F: EntityTrait<Model = N>,
G: EntityTrait<Model = O>,
M: FromQueryResult + Sized,
N: FromQueryResult + Sized,
O: FromQueryResult + Sized,
TOP: Topology,
Sourcepub fn cursor_by<C>(self, order_columns: C) -> Cursor<SelectThreeModel<M, N, O>>where
C: IdentityOf<E>,
pub fn cursor_by<C>(self, order_columns: C) -> Cursor<SelectThreeModel<M, N, O>>where
C: IdentityOf<E>,
Convert into a cursor using column of first entity
Sourceยงimpl<E, F, G, TOP> SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> SelectThree<E, F, G, TOP>
Sourcepub fn find_also<T, H>(self, _: T, _: H) -> SelectFour<E, F, G, H, TopologyStar>
pub fn find_also<T, H>(self, _: T, _: H) -> SelectFour<E, F, G, H, TopologyStar>
Left Join with a Related Entity and select all Entities.
Sourceยงimpl<E, F, G, TOP> SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> SelectThree<E, F, G, TOP>
Sourcepub fn into_model<M, N, O>(self) -> Selector<SelectThreeModel<M, N, O>>
pub fn into_model<M, N, O>(self) -> Selector<SelectThreeModel<M, N, O>>
Perform a conversion into a SelectThreeModel
Sourcepub fn into_partial_model<M, N, O>(self) -> Selector<SelectThreeModel<M, N, O>>
pub fn into_partial_model<M, N, O>(self) -> Selector<SelectThreeModel<M, N, O>>
Perform a conversion into a SelectThreeModel with PartialModel
Sourcepub fn into_json(
self,
) -> Selector<SelectThreeModel<JsonValue, JsonValue, JsonValue>>
Available on crate feature with-json only.
pub fn into_json( self, ) -> Selector<SelectThreeModel<JsonValue, JsonValue, JsonValue>>
with-json only.Convert the Models into JsonValue
Sourcepub fn one<C>(
self,
db: &C,
) -> Result<Option<(E::Model, Option<F::Model>, Option<G::Model>)>, DbErr>where
C: ConnectionTrait,
pub fn one<C>(
self,
db: &C,
) -> Result<Option<(E::Model, Option<F::Model>, Option<G::Model>)>, DbErr>where
C: ConnectionTrait,
Get one Model from the Select query
Sourcepub fn all<C>(
self,
db: &C,
) -> Result<Vec<(E::Model, Option<F::Model>, Option<G::Model>)>, DbErr>where
C: ConnectionTrait,
pub fn all<C>(
self,
db: &C,
) -> Result<Vec<(E::Model, Option<F::Model>, Option<G::Model>)>, DbErr>where
C: ConnectionTrait,
Get all Models from the Select query
Sourcepub fn stream<'a: 'b, 'b, C>(
self,
db: &'a C,
) -> Result<impl Iterator<Item = Result<(E::Model, Option<F::Model>, Option<G::Model>), DbErr>> + 'b, DbErr>where
C: ConnectionTrait + StreamTrait,
pub fn stream<'a: 'b, 'b, C>(
self,
db: &'a C,
) -> Result<impl Iterator<Item = Result<(E::Model, Option<F::Model>, Option<G::Model>), DbErr>> + 'b, DbErr>where
C: ConnectionTrait + StreamTrait,
Stream the results of a Select operation on a Model
Sourcepub fn stream_partial_model<'a: 'b, 'b, C, M, N, O>(
self,
db: &'a C,
) -> Result<impl Iterator<Item = Result<(M, Option<N>, Option<O>), DbErr>> + 'b, DbErr>where
C: ConnectionTrait + StreamTrait,
M: PartialModelTrait + 'b,
N: PartialModelTrait + 'b,
O: PartialModelTrait + 'b,
pub fn stream_partial_model<'a: 'b, 'b, C, M, N, O>(
self,
db: &'a C,
) -> Result<impl Iterator<Item = Result<(M, Option<N>, Option<O>), DbErr>> + 'b, DbErr>where
C: ConnectionTrait + StreamTrait,
M: PartialModelTrait + 'b,
N: PartialModelTrait + 'b,
O: PartialModelTrait + 'b,
Stream the result of the operation with PartialModel
Sourcepub fn consolidate(self) -> SelectThreeMany<E, F, G, TOP>
pub fn consolidate(self) -> SelectThreeMany<E, F, G, TOP>
Consolidate query result by first / second model depending on join topology
// fruit -> cake -> filling
let items: Vec<(fruit::Model, Vec<(cake::Model, Vec<filling::Model>)>)> = fruit::Entity::find()
.find_also_related(cake::Entity)
.and_also_related(filling::Entity)
.consolidate()
.all(db)
?;
// cake -> fruit
// -> filling
let items: Vec<(cake::Model, Vec<fruit::Model>, Vec<filling::Model>)> = cake::Entity::find()
.find_also_related(fruit::Entity)
.find_also_related(filling::Entity)
.consolidate()
.all(db)
?;Trait Implementationsยง
Sourceยงimpl<E, F, G, TOP> Clone for SelectThree<E, F, G, TOP>where
E: EntityTrait + Clone,
F: EntityTrait + Clone,
G: EntityTrait + Clone,
TOP: Topology + Clone,
impl<E, F, G, TOP> Clone for SelectThree<E, F, G, TOP>where
E: EntityTrait + Clone,
F: EntityTrait + Clone,
G: EntityTrait + Clone,
TOP: Topology + Clone,
Sourceยงfn clone(&self) -> SelectThree<E, F, G, TOP>
fn clone(&self) -> SelectThree<E, F, G, TOP>
Returns a duplicate of the value. Read more
1.0.0 ยท Sourceยงfn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSourceยงimpl<E, F, G, M, N, O, TOP> CursorTrait for SelectThree<E, F, G, TOP>where
E: EntityTrait<Model = M>,
F: EntityTrait<Model = N>,
G: EntityTrait<Model = O>,
M: FromQueryResult + Sized,
N: FromQueryResult + Sized,
O: FromQueryResult + Sized,
TOP: Topology,
impl<E, F, G, M, N, O, TOP> CursorTrait for SelectThree<E, F, G, TOP>where
E: EntityTrait<Model = M>,
F: EntityTrait<Model = N>,
G: EntityTrait<Model = O>,
M: FromQueryResult + Sized,
N: FromQueryResult + Sized,
O: FromQueryResult + Sized,
TOP: Topology,
Sourceยงtype Selector = SelectThreeModel<M, N, O>
type Selector = SelectThreeModel<M, N, O>
Select operation
Sourceยงimpl<E, F, G, TOP> Debug for SelectThree<E, F, G, TOP>where
E: EntityTrait + Debug,
F: EntityTrait + Debug,
G: EntityTrait + Debug,
TOP: Topology + Debug,
impl<E, F, G, TOP> Debug for SelectThree<E, F, G, TOP>where
E: EntityTrait + Debug,
F: EntityTrait + Debug,
G: EntityTrait + Debug,
TOP: Topology + Debug,
Sourceยงimpl<'db, C, M, N, O, E, F, G, TOP> PaginatorTrait<'db, C> for SelectThree<E, F, G, TOP>where
C: ConnectionTrait,
E: EntityTrait<Model = M>,
F: EntityTrait<Model = N>,
G: EntityTrait<Model = O>,
M: FromQueryResult + Sized + 'db,
N: FromQueryResult + Sized + 'db,
O: FromQueryResult + Sized + 'db,
TOP: Topology,
impl<'db, C, M, N, O, E, F, G, TOP> PaginatorTrait<'db, C> for SelectThree<E, F, G, TOP>where
C: ConnectionTrait,
E: EntityTrait<Model = M>,
F: EntityTrait<Model = N>,
G: EntityTrait<Model = O>,
M: FromQueryResult + Sized + 'db,
N: FromQueryResult + Sized + 'db,
O: FromQueryResult + Sized + 'db,
TOP: Topology,
Sourceยงtype Selector = SelectThreeModel<M, N, O>
type Selector = SelectThreeModel<M, N, O>
Select operation
Sourceยงfn paginate(
self,
db: &'db C,
page_size: u64,
) -> Paginator<'db, C, Self::Selector>
fn paginate( self, db: &'db C, page_size: u64, ) -> Paginator<'db, C, Self::Selector>
Paginate the result of a select operation.
Sourceยงimpl<E, F, G, TOP> QueryFilter for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> QueryFilter for SelectThree<E, F, G, TOP>
type QueryStatement = SelectStatement
Sourceยงfn query(&mut self) -> &mut SelectStatement
fn query(&mut self) -> &mut SelectStatement
Add the query to perform a FILTER on
Sourceยงfn filter<F>(self, filter: F) -> Selfwhere
F: IntoCondition,
fn filter<F>(self, filter: F) -> Selfwhere
F: IntoCondition,
Add an AND WHERE expression Read more
Sourceยงfn filter_mut<F>(&mut self, filter: F)where
F: IntoCondition,
fn filter_mut<F>(&mut self, filter: F)where
F: IntoCondition,
Like
Self::filter, but without consuming selfSourceยงfn belongs_to<M>(self, model: &M) -> Selfwhere
M: ModelTrait,
fn belongs_to<M>(self, model: &M) -> Selfwhere
M: ModelTrait,
Apply a where condition using the modelโs primary key Read more
Sourceยงfn belongs_to_tbl_alias<M>(self, model: &M, tbl_alias: &str) -> Selfwhere
M: ModelTrait,
fn belongs_to_tbl_alias<M>(self, model: &M, tbl_alias: &str) -> Selfwhere
M: ModelTrait,
Like
belongs_to, but via a table alias Read moreSourceยงimpl<E, F, G, TOP> QueryOrder for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> QueryOrder for SelectThree<E, F, G, TOP>
type QueryStatement = SelectStatement
Sourceยงfn query(&mut self) -> &mut SelectStatement
fn query(&mut self) -> &mut SelectStatement
Add the query to perform an ORDER BY operation
Sourceยงfn order_by<C>(self, col: C, ord: Order) -> Selfwhere
C: IntoSimpleExpr,
fn order_by<C>(self, col: C, ord: Order) -> Selfwhere
C: IntoSimpleExpr,
Add an order_by expression Read more
Sourceยงfn order_by_asc<C>(self, col: C) -> Selfwhere
C: IntoSimpleExpr,
fn order_by_asc<C>(self, col: C) -> Selfwhere
C: IntoSimpleExpr,
Add an order_by expression (ascending) Read more
Sourceยงfn order_by_desc<C>(self, col: C) -> Selfwhere
C: IntoSimpleExpr,
fn order_by_desc<C>(self, col: C) -> Selfwhere
C: IntoSimpleExpr,
Add an order_by expression (descending) Read more
Sourceยงfn order_by_with_nulls<C>(self, col: C, ord: Order, nulls: NullOrdering) -> Selfwhere
C: IntoSimpleExpr,
fn order_by_with_nulls<C>(self, col: C, ord: Order, nulls: NullOrdering) -> Selfwhere
C: IntoSimpleExpr,
Add an order_by expression with nulls ordering option Read more
Sourceยงimpl<E, F, G, TOP> QuerySelect for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> QuerySelect for SelectThree<E, F, G, TOP>
type QueryStatement = SelectStatement
Sourceยงfn query(&mut self) -> &mut SelectStatement
fn query(&mut self) -> &mut SelectStatement
Add the select SQL statement
Sourceยงfn select_only(self) -> Self
fn select_only(self) -> Self
Clear the selection list
Sourceยงfn column<C>(self, col: C) -> Selfwhere
C: ColumnTrait,
fn column<C>(self, col: C) -> Selfwhere
C: ColumnTrait,
Add a select column Read more
Sourceยงfn column_as<C, I>(self, col: C, alias: I) -> Selfwhere
C: ColumnAsExpr,
I: IntoIdentity,
fn column_as<C, I>(self, col: C, alias: I) -> Selfwhere
C: ColumnAsExpr,
I: IntoIdentity,
Add a select column with alias Read more
Sourceยงfn columns<C, I>(self, cols: I) -> Selfwhere
C: ColumnTrait,
I: IntoIterator<Item = C>,
fn columns<C, I>(self, cols: I) -> Selfwhere
C: ColumnTrait,
I: IntoIterator<Item = C>,
Select columns Read more
Sourceยงfn offset<T>(self, offset: T) -> Self
fn offset<T>(self, offset: T) -> Self
Add an offset expression. Passing in None would remove the offset. Read more
Sourceยงfn limit<T>(self, limit: T) -> Self
fn limit<T>(self, limit: T) -> Self
Add a limit expression. Passing in None would remove the limit. Read more
Sourceยงfn group_by<C>(self, col: C) -> Selfwhere
C: IntoSimpleExpr,
fn group_by<C>(self, col: C) -> Selfwhere
C: IntoSimpleExpr,
Add a group by column Read more
Sourceยงfn having<F>(self, filter: F) -> Selfwhere
F: IntoCondition,
fn having<F>(self, filter: F) -> Selfwhere
F: IntoCondition,
Add an AND HAVING expression Read more
Sourceยงfn distinct_on<T, I>(self, cols: I) -> Selfwhere
T: IntoColumnRef,
I: IntoIterator<Item = T>,
fn distinct_on<T, I>(self, cols: I) -> Selfwhere
T: IntoColumnRef,
I: IntoIterator<Item = T>,
Add a DISTINCT ON expression
NOTE: this function is only supported by
sqlx-postgres Read moreSourceยงfn join(self, join: JoinType, rel: RelationDef) -> Self
fn join(self, join: JoinType, rel: RelationDef) -> Self
Join via
RelationDef.Sourceยงfn join_rev(self, join: JoinType, rel: RelationDef) -> Self
fn join_rev(self, join: JoinType, rel: RelationDef) -> Self
Join via
RelationDef but in reverse direction.
Assume when there exist a relation A to B.
You can reverse join B from A.Sourceยงfn join_as<I>(self, join: JoinType, rel: RelationDef, alias: I) -> Selfwhere
I: IntoIden,
fn join_as<I>(self, join: JoinType, rel: RelationDef, alias: I) -> Selfwhere
I: IntoIden,
Join via
RelationDef with table alias.Sourceยงfn join_as_rev<I>(self, join: JoinType, rel: RelationDef, alias: I) -> Selfwhere
I: IntoIden,
fn join_as_rev<I>(self, join: JoinType, rel: RelationDef, alias: I) -> Selfwhere
I: IntoIden,
Join via
RelationDef with table alias but in reverse direction.
Assume when there exist a relation A to B.
You can reverse join B from A.Select lock shared
Sourceยงfn lock_exclusive(self) -> Self
fn lock_exclusive(self) -> Self
Select lock exclusive
Sourceยงfn lock_with_behavior(self, type: LockType, behavior: LockBehavior) -> Self
fn lock_with_behavior(self, type: LockType, behavior: LockBehavior) -> Self
Row locking with behavior (if supported). Read more
Sourceยงfn expr<T>(self, expr: T) -> Selfwhere
T: Into<SelectExpr>,
fn expr<T>(self, expr: T) -> Selfwhere
T: Into<SelectExpr>,
Add an expression to the select expression list. Read more
Sourceยงfn exprs<T, I>(self, exprs: I) -> Self
fn exprs<T, I>(self, exprs: I) -> Self
Add select expressions from vector of
SelectExpr. Read moreSourceยงfn tbl_col_as<T, C, A>(self, (tbl, col): (T, C), alias: A) -> Self
fn tbl_col_as<T, C, A>(self, (tbl, col): (T, C), alias: A) -> Self
Shorthand of
expr_as(Expr::col((T, C)), A). Read moreSourceยงimpl<E, F, G, TOP> QueryTrait for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> QueryTrait for SelectThree<E, F, G, TOP>
Sourceยงtype QueryStatement = SelectStatement
type QueryStatement = SelectStatement
Constrain the QueryStatement to StatementBuilder trait
Sourceยงfn query(&mut self) -> &mut SelectStatement
fn query(&mut self) -> &mut SelectStatement
Get a mutable ref to the query builder
Sourceยงfn as_query(&self) -> &SelectStatement
fn as_query(&self) -> &SelectStatement
Get an immutable ref to the query builder
Sourceยงfn into_query(self) -> SelectStatement
fn into_query(self) -> SelectStatement
Take ownership of the query builder
Auto Trait Implementationsยง
impl<E, F, G, TOP> Freeze for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> RefUnwindSafe for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> Send for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> Sync for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> Unpin for SelectThree<E, F, G, TOP>
impl<E, F, G, TOP> UnwindSafe for SelectThree<E, F, G, TOP>
Blanket Implementationsยง
Sourceยงimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Sourceยงfn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Sourceยงimpl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Sourceยงimpl<T> Instrument for T
impl<T> Instrument for T
Sourceยงfn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Sourceยงfn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Sourceยงimpl<T> IntoEither for T
impl<T> IntoEither for T
Sourceยงfn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSourceยงfn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more