[sqlalchemy] overriding inherited mapper properties supported?

2012-05-17 Thread Kent
Suppose I am using single table polymorphic inheritance like the docs Employee/Manager/Engineer example. I have a relationship that I want to have a different cascade or loading strategy for, depending on the mapper. Can I inherit from the base mapper and override the property, like this:

Re: [sqlalchemy] overriding inherited mapper properties supported?

2012-05-17 Thread Michael Bayer
On May 17, 2012, at 5:00 PM, Kent wrote: Suppose I am using single table polymorphic inheritance like the docs Employee/Manager/Engineer example. I have a relationship that I want to have a different cascade or loading strategy for, depending on the mapper. Can I inherit from the base