You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update SQL Models section to include MIG support with code example.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
from fundamend.models.messageimplementationguide import MessageImplementationGuide as PydanticMig
139
+
from fundamend.sqlmodels import MessageImplementationGuide as SqlMig
140
+
141
+
my_sql_model = SqlMig.from_model(pydantic_mig)
142
+
pydantic_mig = my_sql_model.to_model()
143
+
```
144
+
136
145
#### Befüllen einer Datenbank mit AHB-Informationen
137
146
In den XML-Rohdaten sind die Informationen aus den AHBs theoretisch beliebig tief verschachtelt, weil jede Segmentgruppe ihrerseits wieder Segmentgruppen enthalten kann.
138
147
Diese Rekursion ist so auch in den SQL-Model-Klassen und der Datenbank abgebildet.
0 commit comments