On Thu, Jul 22, 2010 at 5:20 PM, Ryan LeTulle <[email protected]> wrote: > Why wouldn't you simply? > > User.objects.filter(firstname="John", lastname="Doe") > > </ryan> >
Because the OP wants to accept a string containing full (both first and last) name, and you can't reliably split that into "first name" and "last name" pieces for a lot of reasons, some of which Scott mentioned above. Shawn -- You received this message because you are subscribed to the Google Groups "Django users" 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-users?hl=en.

