Left Join with a Related Entity.
(self, _: R)
| 12 | { |
| 13 | /// Left Join with a Related Entity. |
| 14 | pub fn left_join<R>(self, _: R) -> Self |
| 15 | where |
| 16 | R: EntityTrait, |
| 17 | E: Related<R>, |
| 18 | { |
| 19 | self.join_join(JoinType::LeftJoin, E::to(), E::via()) |
| 20 | } |
| 21 | |
| 22 | /// Right Join with a Related Entity. |
| 23 | pub fn right_join<R>(self, _: R) -> Self |