How to use django model outside of django framework?

Django (web framework): What are good ways to model a many to many relationship without a intermediate table?

  • For example: Question and Answers In class Question i have a field called answers that is a many to many field. I want to use the Answer table to get all answer for a specific question. class Answer(models.Model): class Question(Post):     answers = models.ManyToManyField(Answer) Generates: create table "answer" (...); create table "question_answers" (     "id" integer not null primary key,     "question_id" integer not null,     "answer_id" integer not null references "answer" ); create table "question" (...);

  • Answer:

    Instead of an m2m, you should have a one-to-many, which you record on the many side... class Question(models.Model):     ... class Answer(Model):     question = models.ForeignKey(Question) Then, given a question you can get the answers: question.answer_set.all() More here: https://docs.djangoproject.com/en/dev/ref/models/relations/

Roger Barnes at Quora Visit the source

Was this solution helpful to you?

Other answers

Your specific sample can and should use one to many relations. Even if several answers have an answer with the exact same wording/value/etc. they should be stored in separated  records. Simply think it as, you might need to modify a specific instant of similarly worded answer in the future.OTOH, "not using an intermediate table" in fact is not possible, as Django creates one for you if you define a m2m anyway. The point is that m2m relations require an intermediate jump point by definition. If you _really_ do not need a relational definition, you can leave it to the system. However keep in mind, many to many relations by their nature should have something to define that link's "reason". If you cannot find something to store in intermediate table, you probably do not need m2m.

Can Baysal

Just Added Q & A:

Find solution

For every problem there is a solution! Proved by Solucija.

  • Got an issue and looking for advice?

  • Ask Solucija to search every corner of the Web for help.

  • Get workable solutions and helpful tips in a moment.

Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.