Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
hub
/
github.com/sqlalchemy/sqlalchemy
/ User
Class
User
test/typing/plain_files/orm/session.py:40–45 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
38
39
40
class
User(Base):
41
__tablename__ =
"user"
42
43
id: Mapped[int] = mapped_column(primary_key=True)
44
name: Mapped[str]
45
addresses: Mapped[List[Address]] = relationship(back_populates=
"user"
)
46
47
48
class
Address(Base):
Callers
3
session.py
File · 0.70
test_with_for_update
Function · 0.70
test_with_for_update_async
Function · 0.70
Calls
2
mapped_column
Function · 0.90
relationship
Function · 0.90
Tested by
2
test_with_for_update
Function · 0.56
test_with_for_update_async
Function · 0.56