Inner Join with a Related Entity.
(self, _: R)
| 30 | |
| 31 | /// Inner Join with a Related Entity. |
| 32 | pub fn inner_join<R>(self, _: R) -> Self |
| 33 | where |
| 34 | R: EntityTrait, |
| 35 | E: Related<R>, |
| 36 | { |
| 37 | self.join_join(JoinType::InnerJoin, E::to(), E::via()) |
| 38 | } |
| 39 | |
| 40 | /// Join with an Entity Related to me. |
| 41 | pub fn reverse_join<R>(self, _: R) -> Self |