I have the following relations :
{{{
tag 1
user 1 -----> article 1
tag 2
user 1 -----> article 1
}}}
'''Expected behavior :'''
{{{
user = User.objects.get(pk=1)
print user.article.all()
[<Article: 1>]
}}}
'''Observed behavior'''
{{{
user = User.objects.get(pk=1)
print user.article.all()
[<Article: 1>, <Article: 1>]
}}}
More details on Stack Overflow :
http://stackoverflow.com/questions/27777065/duplicate-results-of-
manytomanyfield-when-using-though
--
Ticket URL: <https://code.djangoproject.com/ticket/24079>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
* status: new => closed
* needs_better_patch: => 0
* resolution: => fixed
* needs_tests: => 0
* needs_docs: => 0
Comment:
Solved (http://stackoverflow.com/a/27777286/2550237)
One should use distinct() to remove duplicate entries.
I think a comment in the doc should be appropriated in the many 2 many
section.
--
Ticket URL: <https://code.djangoproject.com/ticket/24079#comment:1>
Old description:
> When using a many 2 many relation ship with 'though' parameter, the DB is
> returning duplicates when several relations exists for the same pair of
> objects.
>
> I have the following relations :
>
> {{{
> tag 1
> user 1 -----> article 1
> tag 2
> user 1 -----> article 1
> }}}
>
> '''Expected behavior :'''
>
> {{{
> user = User.objects.get(pk=1)
> print user.article.all()
> [<Article: 1>]
> }}}
>
> '''Observed behavior'''
>
> {{{
> user = User.objects.get(pk=1)
> print user.article.all()
> [<Article: 1>, <Article: 1>]
> }}}
>
> More details on Stack Overflow :
> http://stackoverflow.com/questions/27777065/duplicate-results-of-
> manytomanyfield-when-using-though
New description:
When using a many 2 many relation ship with 'through' parameter, the DB is
returning duplicates when several relations exists for the same pair of
objects.
I have the following relations :
{{{
tag 1
user 1 -----> article 1
tag 2
user 1 -----> article 1
}}}
'''Expected behavior :'''
{{{
user = User.objects.get(pk=1)
print user.article.all()
[<Article: 1>]
}}}
'''Observed behavior'''
{{{
user = User.objects.get(pk=1)
print user.article.all()
[<Article: 1>, <Article: 1>]
}}}
More details on Stack Overflow :
http://stackoverflow.com/questions/27777065/duplicate-results-of-
manytomanyfield-when-using-though
--
--
Ticket URL: <https://code.djangoproject.com/ticket/24079#comment:2>