Re: [sqlalchemy] one-to-many with mixins in inherited classes

2011-09-07 Thread Erkan Özgür Yılmaz
I forgot to say thank you, I've solved it as you suggested and created a TaskableEntity for task related entities... E.Ozgur Yilmaz Lead Technical Director eoyilmaz.blogspot.com On Sun, Sep 4, 2011 at 11:35 PM, Michael Bayer mike...@zzzcomputing.comwrote: TaskMixin.tasks places a

Re: [sqlalchemy] one-to-many with mixins in inherited classes

2011-09-04 Thread Michael Bayer
TaskMixin.tasks places a relationship named task_of onto the Task class via the backref directive. Only one relationship of this name can exist on the parent class, and a relationship is only configurable against a single class. This single class can be of course a common base for many