class documentation

class ORMDescriptor(Generic[_T], TypingOnly): (source)

Known subclasses: sqlalchemy.orm.base.Mapped

View In Hierarchy

Represent any Python descriptor that provides a SQL expression construct at the class level.

Method __get__ Undocumented
Class Variable __slots__ Undocumented

Inherited from TypingOnly:

Method __init_subclass__ Undocumented
@overload
def __get__(self, instance: Any, owner: Literal[None]) -> ORMDescriptor[_T]:
@overload
def __get__(self, instance: Literal[None], owner: Any) -> SQLCoreOperations[_T]:
@overload
def __get__(self, instance: object, owner: Any) -> _T:
(source)

Undocumented