Right Join with a Related Entity.
(self, _: R)
| 21 | |
| 22 | /// Right Join with a Related Entity. |
| 23 | pub fn right_join<R>(self, _: R) -> Self |
| 24 | where |
| 25 | R: EntityTrait, |
| 26 | E: Related<R>, |
| 27 | { |
| 28 | self.join_join(JoinType::RightJoin, E::to(), E::via()) |
| 29 | } |
| 30 | |
| 31 | /// Inner Join with a Related Entity. |
| 32 | pub fn inner_join<R>(self, _: R) -> Self |