Re: Extending ManyToMany managers

2007-01-08 Thread Ivan Sagalaev
Gulopine wrote: Yeah, I guess I see the biggest obstacle here is the simple fact that the ManyToMany manager is generated each time it's referenced, rather than persisting on the model. I can replace the add() method of the generated manager to get it to work immediately, but the next time I ret

Re: Extending ManyToMany managers

2007-01-08 Thread Gulopine
Yeah, I guess I see the biggest obstacle here is the simple fact that the ManyToMany manager is generated each time it's referenced, rather than persisting on the model. I can replace the add() method of the generated manager to get it to work immediately, but the next time I retrieve the manager

Re: Extending ManyToMany managers

2007-01-07 Thread Russell Keith-Magee
On 1/8/07, Gulopine <[EMAIL PROTECTED]> wrote: I'm trying to extend the manager created for a ManyToMany relationship, and I can't seem to make it happen. There's loads of information available on extending basic managers, but I can't seem to find anything on the ManyToMany variety. Given that