Selects extra Entity and returns it together with the Entity from `Self`
(mut self, _: F)
| 75 | |
| 76 | /// Selects extra Entity and returns it together with the Entity from `Self` |
| 77 | pub fn select_also<F>(mut self, _: F) -> SelectTwo<E, F> |
| 78 | where |
| 79 | F: EntityTrait, |
| 80 | { |
| 81 | self = self.apply_alias(SelectA.as_str()); |
| 82 | SelectTwo::new(self.into_query()) |
| 83 | } |
| 84 | |
| 85 | /// Makes a SELECT operation in conjunction to another relation |
| 86 | pub fn select_with<F>(mut self, _: F) -> SelectTwoMany<E, F> |
no test coverage detected