On 8/1/07, Gary Wilson <[EMAIL PROTECTED]> wrote: > > authors = Author.objects.filter(name__contains="Gary") > new_book = Book(title="Hello World", authors=authors) > new_book.save()
Regardless of any particular merits of this idea, it has one _huge_ strike against it - it's a _massive_ backwards incompatible change. Adapting to this change would require major reworking of all existing code using m2m fields. At this stage, I would have to say that changes to the ORM of this magnitude aren't really up for consideration. Yours, Russ Magee %-) --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
