Demo: convert DBML refs into ER relationships
DBML is already readable, but an ER preview helps product and backend reviewers see table relationships, ownership, and join tables faster.
- Include Ref lines for every relationship you want in the diagram.
- Use table groups or naming conventions for bounded contexts.
- Preview before pasting schema notes into product docs.
Table users { id int [pk] email varchar }
Table orders { id int [pk] user_id int }
Ref: orders.user_id > users.id