Tagged Questions
A type of relationship between entities of types A and B which associates a list of entities of type B to an entity of type A and vice versa. Types A and B may be the same type.
39
votes
1answer
10k views
Rails find_or_create by more than one attribute?
There is a handy dynamic attribute in active-record called find_or_create_by:
Model.find_or_create_by_<attribute>(:<attribute> => "")
But what if I need to find_or_create by more than ...
26
votes
24answers
4k views
How do you name your many-to-many relationship tables?
I've seen a few different naming schemes throughout multiple languages when it comes to many-to-many relationships, so I was wondering: what naming scheme do you use for naming these relationships? ...
20
votes
22answers
1k views
Java method naming conventions: Too many getters
Why do Java method names use the "get" prefix so extensively? At least in my Java programs there are a lot of methods with names starting with the word "get". The percentage of get-methods is ...
20
votes
5answers
3k views
How do I access the child classes of an object in django without knowing the name of the child class?
In Django, when you have a parent class and multiple child classes that inherit from it you would normally access a child through parentclass.childclass1_set or parentclass.childclass2_set, but what ...
14
votes
3answers
1k views
fluent nhibernate - many-to-many relationship mapping on same entity
I am having a problem trying to map out a many-to-many relationship , where both sides of the relationship reference the same entity. I am using Fluent NHibernate and NH3.1.
Basically, the scenario ...
14
votes
3answers
918 views
GUI patterns to edit data with many-to-many relationship
I often run into a situation where I need to come up with a GUI to edit data that has a n:m relationship. I'm looking for user friendly GUI ideas.
[table1]
|
/|\
[table2]
\|/
|
[table3]
...
11
votes
2answers
3k views
MongoDB Many-to-Many Association
How would you do a many-to-many association with MongoDB?
For example; let's say you have a Users table and a Roles table. Users have many roles, and roles have many users. In SQL land you would ...
11
votes
3answers
198 views
MySQL Many-To-Many Query Problem
Here's my problem. I have a many-to-many table called 'user_has_personalities'. In my application, users can have many personalities, and a personality can belong to many users.
The table has two ...
11
votes
3answers
9k views
How to delete many-to-many relationship in Entity Framework without loading all of the data
Does anyone know how to delete many-to-many relationship in ADO.NET Entity Framework without having to load all of the data? In my case I have an entity Topic that has a property Subscriptions and I ...
11
votes
4answers
9k views
Entity framework and many to many queries unusable?
I'm trying EF out and I do a lot of filtering based on many to many relationships. For instance I have persons, locations and a personlocation table to link the two. I also have a role and personrole ...
11
votes
7answers
13k views
LINQ to entities - Building where clauses to test collections within a many to many relationship
So, I am using the Linq entity framework. I have to entities "Content" and "Tag" They are in a many-to-many relationship with one another. Content can have many tags and Tags can have many Contents. ...
10
votes
2answers
3k views
Generic many-to-many relationships
I'm trying to create a messaging system where a message's sender and recipients can be generic entities. This seems fine for the sender, where there is only object to reference (GenericForeignKey) but ...
9
votes
4answers
2k views
SQL - many-to-many table primary key
This question comes up after reading a comment in this question:
http://stackoverflow.com/questions/2190089/database-design/2190101
When you create a many-to-many table, should you create a ...
9
votes
6answers
7k views
Filter ManyToMany box in Django Admin
I have a object with a many-to-many relation with another object.
In the Django Admin this results in a very long list in a multiple select box.
I'd like to filter the ManyToMany relation so I only ...
9
votes
4answers
4k views
Linq To Sql Many-Many Join Table
I am a somewhat experienced Rails developer and I thought I would try out ASP.NET's version of MVC. In doing so I also decided to try Linq->Sql...
I am a bit confused about the way Linq->Sql handles ...
9
votes
7answers
8k views
Many to Many delete cascade in NHibernate
I have a scenario in a system which I've tried to simplify as best as I can. We have a table of (lets call them) artefacts, artefacts can be accessed by any number of security roles and security roles ...
8
votes
1answer
2k views
Entity Framework 4.1 Code First approach to create many-to-many relation
I'm using the Silverlight 5 Beta SDK and the EntityFramework 4.1 in an Silverlight Application.
I'll try to create the two tables 'Author' and 'Book'. In SQL, there should be a third (join) table, ...
8
votes
11answers
4k views
Many-to-many relationship: use associative table or delimited values in a column?
Update 2009.04.24
The main point of my question is not developer confusion and what to do about it.
The point is to understand when delimited values are the right solution.
I've seen delimited data ...
7
votes
2answers
280 views
Core data bug refers to nonexistent core data attribute of reflexive many-to-many relationship
I am experiencing a perplexing Core Data bug, in which I receive the following error message when trying to save some data:
CoreData: error: (1) I/O error for database at ...
7
votes
4answers
719 views
Fluent-NHibernate many-to-many cascade does not populate the link table
OK, no matter how I define these mappings, my many-to-many mapping does not want to work with cascade insert. I have tried various combination of Cascade() with Reverse() and removing all unnecessary ...
7
votes
5answers
356 views
Many-to-many relationships in Kentico
Are there any best practices on how to build a Kentico CMS Portal implementation which is based around a many-to-many relationship (i.e. a website which sells food product and has a large section with ...
7
votes
3answers
748 views
How to lazy load a many-to-many collection in hibernate?
I can lazy load one-to-many and many-to-one associations but I can't with the many-to-many associations.
We have a city in wich we have merchants wich have adresses.
Merchants can have multiple ...
7
votes
2answers
5k views
Using the entity framework to add existing entities to a collection on a newly created entity
I am using the Entity framework to create a new order. The order contains a collection of contacts, a many to many relationship. I want to add a reference to an existing contact on the order on ...
7
votes
1answer
3k views
Linq2Sql Many:Many question, How would you do this?
I know many:many isn't supported in Linq2Sql but I am working on a workaround
I am working with my little SO clone and I have a table with Questions and a table with Tags and a linking table ...
6
votes
1answer
158 views
How to ask the Django manytomany manager to match several relations at once?
I've got this model:
class Movie(models.Model):
# I use taggit for tag management
tags = taggit.managers.TaggableManager()
class Person(models.Model):
# manytomany with a intermediary ...
6
votes
4answers
366 views
Many-to-many association with multiple self-joins in ActiveRecord
I am trying to implement multiple relations between records of the same model via self-joins (based on @Shtééf's answer). I have the following models
create_table :relations, force: true do |t|
...
6
votes
2answers
2k views
django related_name for field clashes
I am getting a field clash in my models:
class Visit(models.Model):
user = models.ForeignKey(User)
visitor = models.ForeignKey(User)
Error: One or more models did not validate:
...
6
votes
4answers
3k views
How to implement mongoid many-to-many associations?
I want to port a social network to Mongoid. The join table between friends is very large. Is there any way for Mongoid to handle this join table out of the box? I've seen a couple of in-model ...
6
votes
5answers
4k views
ORM on android SQLite and database scheme
I'm looking for a very simple ORM framework working on Android for sqlite. I've been testing activeAndroid but none of the example could ever build on Eclipse. By the way, how do guys implements a ...
6
votes
5answers
223 views
SQL: many-to-many relationship, IN condition
I have a table called transactions with a many-to-many relationship to items through the items_transactions table.
I want to do something like this:
SELECT "transactions".*
FROM "transactions"
...
6
votes
4answers
58 views
Got a table of people, who I want to link to each other, many-to-many, with the links being bidirectional
Imagine you live in very simplified example land - and imagine that you've got a table of people in your MySQL database:
create table person (
person_id int,
name text
)
select * from ...
6
votes
2answers
1k views
Fluent NHibernate Self Referencing Many To Many
I have an entity called Books that can have a list of more books called RelatedBooks.
The abbreviated Book entity looks something likes this:
public class Book
{
public virtual long Id { get; ...
6
votes
3answers
1k views
Get all table names in a Django app
How to get all table names in a Django app?
I use the following code but it doesn't get the tables created by ManyToManyField
from django.db.models import get_app, get_models
app = get_app(app_name)
...
6
votes
3answers
2k views
Many-to-many on the same table with additional columns
I have a class User. A user can be a friend with many other users. The relationship is mutual. If A is a friend of B then B is a friend of A. Also I want every relation to store additional data - for ...
6
votes
5answers
798 views
Algorithm that searches for related items based on common tags
Lets take StackOverflow questions as example. Each of them has multiple tags assigned. How to build an algorithm that would find related questions based on how many common tags they have (sorted by ...
5
votes
2answers
56 views
Using left outer join for many-to-many relationship where null is allowed
I have a many-to-many table relationship in MySQL involving three tables: tickets, ticket_solutions, and solutions. (A ticket may have multiple solutions, and solutions apply to multiple tickets.)
...
5
votes
1answer
114 views
Find distinct qualified combinations of A & B, with many-to-many A:B exclusions
With all the "distinct combination" and "Cartesian product" questions on SO, I'm sure there's a name and canonical solution for this one, but I'm not turning it up.
Update... Here's a potentially ...
5
votes
2answers
152 views
Hibernate Many-to-many association: left hand side collection contains elements, but right hand side collection is empty
I got a problem with a many to many association in my persistence layer. My scenario is the following:
A user can has several roles and a role can have several user attached to it. During the tests I ...
5
votes
1answer
179 views
.NET Dynamic Data Many-To-Many with LINQ to SQL
We have a Dynamic Data site we're using for administration and we currently need a way to manage a many-to-many relationship. There are plenty of examples of how to do this using the Entity framework ...
5
votes
1answer
227 views
Audit many-to-many relationship in NHibernate
I have implemented listeners to audit changes to tables in my application using IPreUpdateEventListener and IPreInsertEventListener and everything works except for my many-to-many relationships that ...
5
votes
3answers
193 views
Domain Driven Design: Handling complex entities with many states and relations (Real Estate)
So I'm fairly new to DDD and am trying to build a scalable and flexible system for my current employer (Real Estate Agency) that will help us speed up internal company procedures.
As stated, we're in ...
5
votes
2answers
2k views
JPA many to many with extra column
I have a following problem that I need to solve.
The core issues is that I want to add additional column into JoinTable for ManyToMany relation in JPA. In my case I have following entities.
The Topic ...
5
votes
1answer
687 views
Naming conventions in generated many-to-many table using EF4 CTP4 code first approach
Given the following POCO classes:
public class Certification {
public int Id { get; set; }
public virtual ICollection<Employee> CertifiedEmployees { get; set; }
}
public class Employee ...
5
votes
1answer
541 views
How to delete all associations in a Hibernate JoinTable at once?
We have the following two entities with many-to-many association:
@Entity
public class Role {
...
@ManyToMany
@JoinTable( name = "user_has_role", joinColumns = { @JoinColumn( name = "role_fk" ...
5
votes
1answer
493 views
Entity Framework many-to-many question
Please help an EF n00b design his database.
I have several companies that produce several products, so there's a many-to-many relationship between companies and products. I have an intermediate table, ...
5
votes
1answer
2k views
How do I set up a facet search with a many to many relationship using Sunspot?
I haven't implemented a search feature before and feel a bit stuck. I have a Sunspot search feature which finds results based on keywords - this works great - but I now want to implement the multi ...
5
votes
1answer
517 views
Fluent Nhibernate Many-to-Many mapping with extra column
I want to map sth like this using fluent Nhibernate but I am not sure how to map the inventory table
This is the tables I have :
Product (Id,Name, ...)
Warehouse(Id, Name, ...)
...
5
votes
4answers
1k views
LINQ many-to-many relationships: Solution?
LINQ so far has been remarkably elegant, but to perform basic m2m queries it offers no solution I can imediately see.
What's worse is that while it works for any other table relationship, LINQ is ...
5
votes
3answers
763 views
How to properly index a linking table for many-to-many connection in MySQL?
Lets say I have a simple many-to-many table between tables "table1" and "table2" that consists from two int fields: "table1-id" and "table2-id". How should I index this linking table?
I used to just ...
5
votes
8answers
1k views
What is the best way to represent a many-to-many relationship between records in a single SQL table?
I have a SQL table like so:
Update: I'm changing the example table as the existing hierarchical nature of the original data (State, Cities, Schools) is overshadowing the fact that a simple ...