0
votes
1answer
49 views

Django ManyToMany relation contains value

I'm trying to search through a ManyToMany relationship, but I'm doing something wrong and I'm not sure about what it is t = Teacher.objects.get(username=u.username) var = ...
0
votes
2answers
92 views

Django: three models in relation to each other, what is the best way

I have an online shop. there are single items to buy, but there are also some sets which contain some of those single items. Now i am trying to find the best/usefull solution for these relations. That ...
1
vote
2answers
65 views

Updating ManyToMany jointable in Java

I generated Entities and Facades using netbeans. Below is an example that works/updates: I have 2 tables that are joined by a join table where it works: User PK: userID Category PK: categoryID ...
0
votes
0answers
36 views

How to do a merge inside a controller? [duplicate]

I'm trying to create a many-to-many relationship, but I have this problem when I try save it to table. def new @filme = Filme.find(params[:id]) @usuario = Usuario.find(params[:ud]) ...
0
votes
0answers
26 views

ManyToMany relationship by specific link table

I need to avoid @ManyToMany and @OneToMany JPA annotations by using specific link table. I have two entities: articles(id, title, text) and authors(id, login, password). One author can have multiple ...
0
votes
2answers
33 views

Performing Searches over Many-to-Many Relationships

I have a database which (for the purposes of this example), has two tables that have a many to many association (with an intermediary table for holding the associations). Here is there structure: ...
0
votes
0answers
75 views

Core Data query through many "many-to-many relationships

New to Core Data, I'm trying hard to understand how to access and query through multiples many-to-many relationships. Here's the model: http://dl.free.fr/dRqgjMgR4 I would like to get the number of ...
0
votes
1answer
56 views

Sqlalchemy thread messaging system

I'm newbie to sqlalchemy. Now developing site with Flask. I want to orginize message system with threads. Something like facebook dialogs. I have following models and this code works: ...
0
votes
0answers
108 views

EF5 How to map and submit related data corretly

I have two models with a many to many relationship: public class Reference { public int Id { get; set;} public virtual ICollection<Category> Categories { get; set; } } public class ...
1
vote
2answers
303 views

Silverstripe S3: DataObject adding in many_many relationship

I am trying to programmatically add a DataObject to another one, in a $many_many / $belong_many_many relationship. Silverstripe-3 seem to have a problem with that task. //Object 1 <?php class ...
0
votes
1answer
54 views

django - adding a counter for every ManyToMany field added

i have these models: #model.py class Subject(models.Model): name = models.CharField("Name",max_length=50, blank=True) ... ... class Activity(models.Model): label = ...
0
votes
1answer
83 views

JPA many to one: get elements

I have a problem, that I would like to explain with the following example: JPA class Person: @ManyToMany(mappedBy = "persons") private List<Car> cars= new ArrayList<>(); ...
0
votes
0answers
53 views

RestKit - Posting an object with a many-to-many relationship object

How to send a managed object with a many-to-many relationship? Example: Friend ->> List List ->> Friend Friend *friend1 = [Friend object]; friend1.friendId = 1; friend1.name = @"Dummy1"; Friend ...
0
votes
1answer
31 views

Rails Forms: How do I set different default for new user and existing user?

I have a Rails App that lets Users register. Users can have several music styles that they'd like to follow (many-to-many association). Now, when a new user gets to the form, he should have all music ...
2
votes
1answer
591 views

Many-to-many relationship in web2py

I have a table of articles in my web2py project similar to this one: db.define_table('articles', Field('created_on', 'datetime', default = datetime.today(), ...
2
votes
2answers
249 views

How to represent a categorized many-to-many database relationship where categories are specific to one side of the relationship

I'm working on building a database to manage project assignments, and the one part that's giving me particular trouble is the assignment of job titles to employees with for each project they are ...
0
votes
1answer
131 views

CakePHP store array of id's in many-to-many table

I'm having a problem with CakePHP. I try to set some data with the saveAll() function. I json_decode the following JSON string and pass the result to the saveAll() method. { "SurveyAnswer":{ ...
0
votes
2answers
680 views

SQL how to handle a many to many relationship

I have two tables that have a many-many relationship: Player(personID, school) Team(teamID, name) What code would I use to create the associative entity table called playerTeam. I have tried the ...
2
votes
2answers
3k views

Save model with many to many relationship with Yii

I have 3 tables like that : User(ID,Name) | Tutorial(ID, Tutcontent) | UserTutorial (ID, IDUser, IDTutorial). I use this code to save model $user = User::model()->findByPk(1); $tutorial = ...
0
votes
1answer
233 views

DJANGO: Showing many-to-many additional fields in template

I have the following situation: A project can belong to multiple departments, Employees are assigned roles to multiple projects. How do I show the roles field in a template? employees.role shows ...
0
votes
1answer
79 views

How do you structure a ManyToMany relationship with itself?

I'm trying to model a database for my website and I'm trying to conceptualize how one would go about structuring a table that has a ManyToMany relationship with itself. I'm very new to programming and ...
0
votes
2answers
88 views

MySQL db structure decision: many to many using link-table or parent id?

i'm a little bit stuck with deciding what db structure is the best for performance for me.. i have two tables: Catalogue Items ID | Descr I_ID | Descr in both tables all rows are ...
1
vote
3answers
176 views

Django - Models FK/many2many relationships

I need to understand a bit better how do FK/m2m relationships work. I've prepared Images model for uploading images and it has an additional feature - it can be categorized by adding to a specific ...
1
vote
3answers
343 views

DJANGO: many-to-many relationship with additional fields

New to programming and this is very confusing for me... I have 2 models. Department and Crossfunctionalproject. The relationship between the two models creates a join table called ...
0
votes
1answer
337 views

inserting data in many to many relationship in entity framework

I have two tables (users , messages) which there is many to many relationship for them. i want to add new messages in message table and allocate massages to current users. Also i insert data like ...
1
vote
0answers
129 views

Are backrefs necessary when using association proxies for a many-to-many?

So using SqlAlchemy, I'm creating a fairly simple many-to-many relationship between a users model and a comments model. users.py class UsersModel(Base): __tablename__ = 'users' id = ...
1
vote
1answer
116 views

Setting new values for each many-to-many entity relationship in core data

This is driving me crazy and most likely I am doing this wrong. So I have two entities: Criteria and Option that has a many to many relationship. The attributes for each are Option: optionName ...
0
votes
2answers
521 views

predicate to many-to-many relationship core-data

I have two entities in a Core Data Model like these: A <<--->> B. Entity B has an attribute name which is a string object and a relationship AObjects to A; instead, entity A has got a ...
3
votes
2answers
2k views

SQLAlchemy declarative many-to-many self-join via Association object

I have a table Users and a table Friends which maps users to other users as each user can have many friends. This relation is obviously symmetric: if user A is a friend of user B then user B is also a ...
1
vote
2answers
2k views

How to do a many-to-many relationship in spring Roo, with attributes within de relationship?

i have been researching on this topic and havent found any answers yet. Im using spring roo and i would like to know if theres a way I can establish a many-to-many relationship with attributes within ...
0
votes
3answers
246 views

MySQL Many-to-Many Relationship Select Conditions

I have two tables books and tags which are in a many-to-many relationship via the table books_tags. What I want to do is select all books that have one or more tag(s) like '%tag%'. No problem. ...
1
vote
3answers
81 views

How do I efficiently delete all rows in a many-to-many relationship table that have a given destination exclusively on one side of the relationship?

I have a MySQL database with a relationship table which can be simplified to: CREATE TABLE `Paths` ( `origin` char(32) NOT NULL, `destination` char(32) NOT NULL, `id` int(11) NOT NULL ...
2
votes
5answers
145 views

How to I design a database constraint so two entities can only have a many to many relationship if two field values within them match?

I have a database with four tables as follows: Addressbook -------------------- id more fields Contact --------------------- id addressbook id more fields Group --------------------- id ...
2
votes
1answer
2k views

Create a Many to Many relationship in CRM 4 and 5 in C#

I need to create/define a Many to Many relationship between a Lead and a custom entity as well as between a Contact and a custom entity. I can't seem to find any code examples of what I want to do. ...
0
votes
0answers
215 views

Doctrine Equal Nest Relations with additional properties

I have an equal nest relation setup between a User and Friend class. How can I access other fields on the Friend class? Here's the background info: Diagram: User Class class User extends ...
1
vote
2answers
262 views

Problem with saving ManyToMany field data in intermediary models

First of all, sorry for my English. I have this structure, idea is: Product can have many suppliers, and supplier himself have products class Supplier(Model): title = CharField() def ...
1
vote
1answer
91 views

Triggering another model's data to change (M2M) based on this model

Basically, I am trying to use data from one model to trigger a switch in another model. If my invoice object is linked with a file, I want the file to be "locked" (a boolean). I find that when I ...
0
votes
2answers
477 views

Many to many relationship , rails

I have a many-to-many relation between users and the channels they subscribe to. But when I look at my model dependency between user and user channels or channels and users channel instead there is a ...
0
votes
2answers
210 views

Rails - Many-to-Many Relationship - Default Relationship?

I'm having an issue within rails where, I have a basic many to many relationship between two models (order and status). These models look like the following: class Order < ActiveRecord::Base ...
6
votes
1answer
1k views

Many-to-many self-referential relationship in sqlalchemy

I'm trying to make a self-referential many-to-many relationship (it means that Line can have many parent lines and many child lines) in sqlalchemy like this: Base = declarative_base() class ...
7
votes
2answers
2k views

How do I access the properties of a many-to-many “through” table from a django template?

From the Django documentation... When you're only dealing with simple many-to-many relationships such as mixing and matching pizzas and toppings, a standard ManyToManyField is all you need. ...
0
votes
2answers
753 views

Doctrine how to setup Many to Many to Many relationship

Summary: Using the following YML I get a reference to a FOREIGN KEY (role_id) that is not in my YML. Problem: I'm trying to create a system where there is a user (CreditName) who can belong to ...
2
votes
4answers
398 views

Many-to-many relationship for many types of entities

I have four tables: Disks, Folders, Files and Links. It is four types of entities, and they can not be merged into one type (e.g. into one table) because they have different number and types of ...
1
vote
1answer
828 views

How to map and test a “Many to Many Relationship” in NHibernate using Fluent NHibernate

When I test my many to many classes an error occurs: System.ApplicationException: Actual count does not equal expected count. Entities: public interface IEntity { int Id { ...
5
votes
1answer
3k views

Many to many lookups in Django

This is probably insultingly simple and worthy of a Nelson Muntz laugh, but I'm having a real braindead moment tryng to make many to many connections across various model relationships. I have the ...