Return the primary mapper corresponding to this mapper's class key (class).
(self)
| 3386 | return iter(self.self_and_descendants) |
| 3387 | |
| 3388 | def primary_mapper(self) -> Mapper[Any]: |
| 3389 | """Return the primary mapper corresponding to this mapper's class key |
| 3390 | (class).""" |
| 3391 | |
| 3392 | return self.class_manager.mapper |
| 3393 | |
| 3394 | @property |
| 3395 | def primary_base_mapper(self) -> Mapper[Any]: |
no outgoing calls
no test coverage detected