()
| 163 | E: EntityTrait, |
| 164 | { |
| 165 | pub(crate) fn new() -> Self { |
| 166 | Self { |
| 167 | query: SelectStatement::new(), |
| 168 | entity: PhantomData, |
| 169 | } |
| 170 | .prepare_select() |
| 171 | .prepare_from() |
| 172 | } |
| 173 | |
| 174 | fn prepare_select(mut self) -> Self { |
| 175 | self.query.exprs(self.column_list()); |
nothing calls this directly
no test coverage detected