Join via [`RelationDef`] but in reverse direction. Assume when there exist a relation A to B. You can reverse join B from A.
(mut self, join: JoinType, rel: RelationDef)
| 397 | /// Assume when there exist a relation A to B. |
| 398 | /// You can reverse join B from A. |
| 399 | fn join_rev(mut self, join: JoinType, rel: RelationDef) -> Self { |
| 400 | self.query().join(join, rel.from_tbl.clone(), rel); |
| 401 | self |
| 402 | } |
| 403 | |
| 404 | /// Join via [`RelationDef`] with table alias. |
| 405 | fn join_as<I>(mut self, join: JoinType, mut rel: RelationDef, alias: I) -> Self |
no test coverage detected