Recursive self-join with CTE
(self, l: L)
| 158 | #[doc(hidden)] |
| 159 | /// Recursive self-join with CTE |
| 160 | pub fn find_with_linked_recursive<L>(self, l: L) -> Select<E> |
| 161 | where |
| 162 | L: Linked<FromEntity = E, ToEntity = E>, |
| 163 | { |
| 164 | find_linked_recursive(self, l.link()) |
| 165 | } |
| 166 | } |
| 167 | |
| 168 | impl<E, F> SelectTwo<E, F> |
nothing calls this directly
no test coverage detected