Select rows from the table. Returns: The select statement.
(cls)
| 304 | @classmethod |
| 305 | @property |
| 306 | def select(cls): |
| 307 | """Select rows from the table. |
| 308 | |
| 309 | Returns: |
| 310 | The select statement. |
| 311 | """ |
| 312 | return sqlmodel.select(cls) |
| 313 | |
| 314 | |
| 315 | def session(url: str | None = None) -> sqlmodel.Session: |
no outgoing calls