Carel

Results 14 comments of Carel

Just to clarify, by view do you mean separate HTML a representation; that is neither the JSON response nor the Admin view (also in HTML). If so one replaces the...

I saw a remark in the SQL Alchemy documentation that you can readily treat a view as an additional table (See [Reflecting Views](https://docs.sqlalchemy.org/en/13/core/reflection.html#reflecting-views).) SQL Alchemy should detect these automatically when...

The other way to go is to create a view in the SQL Alchemy layer, If you're sub-classing the declarative base/Auto-mapped model you can pass it a query of your...

I'm not sure this is a spot on answer but I've gotten compound keys to work. If you have two tables, TABLE and FOREIGN, both of which are auto-mapped. One...