Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

sqlalchemy 2.0 compatible syntax #102

Open
wants to merge 1 commit into
base: chapter_12_cqrs
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions src/allocation/adapters/orm.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
ForeignKey,
event,
)
from sqlalchemy.orm import mapper, relationship
from sqlalchemy.orm import relationship, registry

from allocation.domain import model

Expand Down Expand Up @@ -57,10 +57,13 @@
Column("batchref", String(255)),
)

# Create a registry
mapper_registry = registry()


def start_mappers():
lines_mapper = mapper(model.OrderLine, order_lines)
batches_mapper = mapper(
lines_mapper = mapper_registry.map_imperatively(model.OrderLine, order_lines)
batches_mapper = mapper_registry.map_imperatively(
model.Batch,
batches,
properties={
Expand All @@ -71,7 +74,7 @@ def start_mappers():
)
},
)
mapper(
mapper_registry.map_imperatively(
model.Product,
products,
properties={"batches": relationship(batches_mapper)},
Expand Down