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

Method reverse_join

src/query/join.rs:41–46  ·  view source on GitHub ↗

Join with an Entity Related to me.

(self, _: R)

Source from the content-addressed store, hash-verified

39
40 /// Join with an Entity Related to me.
41 pub fn reverse_join<R>(self, _: R) -> Self
42 where
43 R: EntityTrait + Related<E>,
44 {
45 self.join_rev(JoinType::InnerJoin, R::to())
46 }
47
48 /// Left Join with a Related Entity and select both Entity.
49 pub fn find_also_related<R>(self, r: R) -> SelectTwo<E, R>

Callers

nothing calls this directly

Calls 1

join_revMethod · 0.80

Tested by

no test coverage detected