Thank you for this library! I'm using it and exploring how to add better type safety. In SQLAlchemy, the recommendation is to switch from calling declarative_base() to inheriting from DeclarativeBase, and all model classes inherit from that type. Can you help me understand how to combine this with sqlservice, which has its own ModelBase base class?
Thank you for this library! I'm using it and exploring how to add better type safety. In SQLAlchemy, the recommendation is to switch from calling
declarative_base()
to inheriting fromDeclarativeBase
, and all model classes inherit from that type. Can you help me understand how to combine this with sqlservice, which has its ownModelBase
base class?