0
votes
1answer
74 views
How to properly remove a specific ManyToMany relationship?
I have a ManyToMany relationship with one of my Models. On deleting a child, I want to remove the relationship but leave the record as it might be being used by other objects. On calling the delete …
0
votes
1answer
87 views
Django m2m and saving objects
I have a couple of simple objects that have a many-to-many relationship. Django has joined them using obj1_obj2 table and it looks like this in mysql;
id | person_id | nationality_id
…
0
votes
0answers
20 views
How can i use ManyToManyRawIdWidget outside admin?
Im new to django and I would like to know how could i use the ManytoManyRawId widget outside admin.
I've tried different ways but still don't work. Help would be really much appreciated.
0
votes
3answers
65 views
Multiple @ManyToMany sets from one join table
Hi guys,
I'm mapping a proprietary database to Hibernate for use with Spring. In it, there are a couple of jointables that, for entity A and entity B have the following schema:
CREATE TABLE AjoinB (
…
1
vote
3answers
145 views
Django - ManyToMany
I'm making a game link site, where users can post links to their
favorite web game.
When people post games they are supposed to check what category the
game falls into.
I decided to allow many …
0
votes
1answer
96 views
NHibernate ManyToMany relationship - using AuditInterceptor - object references an unsaved transient instance - save the transient instance before flushing
The domain model the DomainObject's audit fields are populated using an AuditInterceptor.
DomainObject
Id
EstablishDate
EstablishId
UpdateDate
UpdateId
Message : DomainObject
…
0
votes
3answers
57 views
Many to many tables and querying on the same variable with arrays
SOLVED - see Bish below
I've got a list of checkboxes that all dump to $fruitid[], and a many-to-many table1:
BoxID FruitID
01 01
01 02
02 01
02 03
02 04
03 02
…
-1
votes
0answers
45 views
many to many relation with two listboxes in winForm question
this is exectly what I wanted:
At the top of the form is a list of jobs, possibly a combobox or listbox, depending on how often you think the user will be navigating between jobs.
Below that, on the …
0
votes
3answers
81 views
Can’t insert entries of a many-to-many relationship in Entity Framework in a specific order
Hello,
I have a many-to-many relationship between 2 entities in Entity Framework, like here . So, Employees and Projects. At one point, I would like to insert some Projects to a Employees entity in a …
0
votes
0answers
55 views
XML Schema - How do I model many-many relationships (i.e. Photos/Tags)
I need an XML schema for Albums/Photos/Tags where Photos & Tags have many-many relationships. I'd like to have a generalized xml schema solution for the following:
1 container (Album) of …
0
votes
1answer
131 views
Yii framework Many to Many relationships..
What is the method to save and update Many to Many relationship in Yii framework?
0
votes
1answer
121 views
Many to many dimension - MDX help needed
I’m pretty new to the many-to-many dimensions but I have a scenario to solve, which raised a couple of questions that I can’t solve myself… So your help would be highly appreciated!
The scenario is:
…
0
votes
4answers
340 views
Many to many relationship with Ruby on Rails
I'm working on my first project with RoR and I need to create many to many relationship between two models but with possibility of ordering objects of first model in association to second model.
…
0
votes
1answer
79 views
Querying django ManyToMany
I have got
Foo <=> FooGroup <=> Bar
relation, where <=> stands for ManyToMany field.
How do I retrieve all the Foos for a specific Bar instance?
1
vote
1answer
76 views
Determining ManyToMany vs OneToMany using ClassMetadata
I am using ClassMetadata to determine the structure of a hibernate POJO.
I need to determine if a collection is OneToMany or ManyToMany. Where is this information? Can I get to it without using …
