Select rows from the table. Returns: The select statement.
(cls)
| 668 | |
| 669 | @classmethod |
| 670 | def select(cls): |
| 671 | """Select rows from the table. |
| 672 | |
| 673 | Returns: |
| 674 | The select statement. |
| 675 | """ |
| 676 | return sqlmodel.select(cls) |
| 677 | |
| 678 | ModelRegistry.register(Model) |
| 679 |
no outgoing calls