(self)
| 225 | /// Get a selectable Model as a [JsonValue] for SQL JSON operations |
| 226 | #[cfg(feature = "with-json")] |
| 227 | pub fn into_json(self) -> Selector<SelectModel<JsonValue>> { |
| 228 | Selector { |
| 229 | query: self.query, |
| 230 | selector: SelectModel { model: PhantomData }, |
| 231 | } |
| 232 | } |
| 233 | |
| 234 | /// ``` |
| 235 | /// # use sea_orm::{error::*, tests_cfg::*, *}; |
no outgoing calls