Given a :class:`_schema.Column` object, return the :class:`.MapperProperty` which maps this column.
(
self, column: ColumnElement[_T]
)
| 2463 | ) from err |
| 2464 | |
| 2465 | def get_property_by_column( |
| 2466 | self, column: ColumnElement[_T] |
| 2467 | ) -> MapperProperty[_T]: |
| 2468 | """Given a :class:`_schema.Column` object, return the |
| 2469 | :class:`.MapperProperty` which maps this column.""" |
| 2470 | |
| 2471 | return self._columntoproperty[column] |
| 2472 | |
| 2473 | @HasMemoized.memoized_attribute |
| 2474 | def columns(self) -> ReadOnlyColumnCollection[str, Column[Any]]: |
no outgoing calls
no test coverage detected