Re: Model Inheritance: Mixin Use Cases

2006-03-31 Thread Andy Dustman
On 3/31/06, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: > > On 3/31/06, Andy Dustman <[EMAIL PROTECTED]> wrote: > > I have some notes on the ModelInheritance page about possibly using > > views to simplify reading, and while none of the databases I could > > find could do a multi-table update th

Re: Model Inheritance: Mixin Use Cases

2006-03-31 Thread Joseph Kocherhans
On 3/31/06, Andy Dustman <[EMAIL PROTECTED]> wrote: > > At present (in magic-removal), If I make a BaseRecord type with all > the common attributes and then make other records subclass it (not > exactly what you are asking for with mixins), I can create new entries > fine, but I can't access them

Re: Model Inheritance: Mixin Use Cases

2006-03-31 Thread Andy Dustman
On 3/31/06, Joseph Kocherhans <[EMAIL PROTECTED]> wrote: > > Could anyone who want's mixins post some specific use cases > (preferably simple code samples) Basically, are people wanting > multiple inheritace for models, or do you just want a mixin to provide > some additional methods? I'm reasearc

Model Inheritance: Mixin Use Cases

2006-03-31 Thread Joseph Kocherhans
Could anyone who want's mixins post some specific use cases (preferably simple code samples) Basically, are people wanting multiple inheritace for models, or do you just want a mixin to provide some additional methods? I'm reasearching model inheritance a bit more, and realized that I have no idea