sqlalchemy-pydantic-orm
sqlalchemy-pydantic-orm copied to clipboard
Dynamic ORM operations using pydantic
I think we need some kind of possibility to mix `sqlalchemy_pydantic_orm.ORMBaseSchema` and `fastapi_camelcase.CamelModel`. So that it is possible to create compatible nested schemas and models with snake_case attributes but still...
My code intend to correct few issues. 1 Nested elements might not be created / updated when the parent element is. My code allow a mix of update and create...
When you add an object, let's say a Father, you might add at the same time the kid or later on. That works fine in this lib. but if a...