MCPcopy Create free account
hub / github.com/SeaQL/sea-orm / left_join

Method left_join

src/query/join.rs:14–20  ·  view source on GitHub ↗

Left Join with a Related Entity.

(self, _: R)

Source from the content-addressed store, hash-verified

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

Calls 1

join_joinMethod · 0.80