Tagged Questions
The one-to-many tag has no wiki summary.
34
votes
3answers
10k views
When to use inverse=false on NHibernate / Hibernate OneToMany relationships?
I have been trying to get to grips with Hibernate's inverse attribute, and it seems to be just one of those things that is conceptually difficult.
The gist that I get is that when you have a parent ...
7
votes
2answers
204 views
When would it be worth it to maintain an inverse relationship in Doctrine2?
In the Doctrine manual, under Constrain relationships as much as possible, it gives the advice "Eliminate nonessential associations" and "avoid bidirectional associations if possible". I don't ...
7
votes
2answers
3k views
JPA: How to have one-to-many relation of the same Entity type
There's an Entity Class "A". Class A might have children of the same type "A". Also "A" should hold it's parent if it is a child.
Is this possible? If so how should I map the relations in the ...
7
votes
6answers
485 views
How can I know the address of owner object in C++?
I would like to create in C++ a Notifier class that I will use in other objects to notify various holders when the object gets destroyed.
template <class Owner>
class Notifier<Owner> {
...
6
votes
2answers
4k views
How to deal with Form Collection on Symfony2 Beta?
I have an entity User and an entity Address. There is a relation One-to-Many between User and Address :
class User
{
/**
* @orm:OneToMany(targetEntity="Address")
*/
...
6
votes
2answers
3k views
Hibernate unidirectional one to many association - why is a join table better?
In this document (scroll down to the Unidirectional section):
http://docs.jboss.org/hibernate/stable/annotations/reference/en/html_single/#entity-mapping-association-collections
it says that a ...
6
votes
2answers
8k views
Hibernate Unidirectional Parent/Child relationship - delete() performs update on child table instead of delete
If I delete a record from the Parent table I want the corresponding records in the child table to be deleted. How can I make Hibernate delete from the Child table rather than attempt to update with a ...
4
votes
1answer
385 views
How to handle multiple nested Form Collections in Symfony 2.0?
I've got an extension to this question: How to deal with Form Collection on Symfony2 Beta? - My project is similar, but the objects are nested deeper. I've got Articles which have one or more Content ...
4
votes
1answer
112 views
Multiple ManyToMany relationships using “mappedBy” with Super class member
I am developing an application using Hibernate and am trying to model the following scenario:
I have an Activity Abstract class, defined as follows:
@Entity
...
4
votes
2answers
243 views
How do I handle table relationships with the repository pattern?
I'm implementing the repository pattern as part of an ASP.NET MVC site. Most examples I've seen of repositories are fairly simple. For example here's a typical abstract repository interface.
public ...
4
votes
4answers
2k views
Difference Between One-to-Many/Many-to-One and Many-to-Many?
Ok so this is probably a trivial question but I'm having trouble visualizing and understanding the differences and when to use each. I'm also a little unclear as to how concepts like unidirectional ...
4
votes
1answer
611 views
Hibernate: What's wrong with this mapping to a subclass joined on foreign key?
I am experimenting with Hibernate to gain experience. I created a class Person with two subclasses: Student and Worker:
public abstract class Person {
private Long id;
...
}
public class ...
4
votes
4answers
684 views
How to select parent row only if has at least one child?
I have a simple one-to-many relationship. I would like to select rows from the parent only when they have at least one child. So, if there are no children, then the parent row is not returned in the ...
4
votes
1answer
684 views
Value of 0 in Hibernate IndexColumn mapped with base=1
We are using Hibernate Annotations 3.4.0GA and Hibernate Core 3.3.2.GA (also known as the current stable versions) against an Oracle database
We have a One-to-Many mapping with base=1 which worked ...
4
votes
1answer
5k views
Django One-To-Many Models
The following models describe a vulnerability and the URLs out on the internet that reference that vulnerability. Assume that each URL only ever talks about 1 vulnerability, and that many URLs will ...
4
votes
1answer
429 views
SubSonic 3 SimpleRepository One-to-many
How do I handle relations in SubSonic 3 using the SimpleRepository? E.g: Having Author and Book (see below) I want the assigned Author to be persisted when the Book is persisted.
[Serializable]
...
4
votes
2answers
767 views
How to add new object to an IList mapped as a one-to-many with NHibernate?
My model contains a class Section which has an ordered list of Statics that are part of this section. Leaving all the other properties out, the implementation of the model looks like this:
public ...
4
votes
8answers
3k views
One-to-many relationship in the same table
Im trying to use to define a one-to-many relationship in a single table. For example lets say I have a Groups table with these entries:
Group:
Group_1:
name: Atlantic Records
Group_2:
...
3
votes
3answers
84 views
Define One to Many Relationships with SQL
I'm looking for a way to set up a one to many relationship between 2 tables. The table structures is explained below but I've tried to leave everything off that has nothing to do with the problem.
...
3
votes
3answers
46 views
JPA - @OneToMany update
Consider that there are two entities, Department and Employee, where in one department there are N employees.
In Departament:
@OneToMany(mappedBy = "department", fetch = FetchType.EAGER)
private ...
3
votes
2answers
59 views
Bind 2 table together (one to many relationship)
I am pretty new to c#, EF Code First and all that, so my question might be an easy one.
I am trying to create a very simple login. Each user must have a type (admin or client). How can I bind the ...
3
votes
1answer
181 views
database structure for google plus circles?
I know for sure that Google does not use mysql, but in my case I happen to work on a project using mysql and has features that are very similar to circles:
user can belong to many circles
user can ...
3
votes
1answer
83 views
Why NHibernate deletes referenced objects one by one, not using foreign key?
I have simple Parent-Child relationship, Parent has many Child objects, the relation is unidirectional:
public class Parent
{
public virtual int Id { get; protected set; }
public virtual ...
3
votes
1answer
722 views
Hibernate - delete child in one-to-many relation throws ObjectDeletedException
Please, sorry if i ask already asked, but i just don't understand why Hibernate throws exception mentioned in title. I'm beginner and probably don't understand state management idea behind Hibernate.
...
3
votes
3answers
2k views
EF 4.1 code first: one-to-many mapping problem
In my domain I have these classes (in simplified form)
public class Document
{
public string Id { get; set; }
public IList<MetadataValue> MetadataList { get; set; }
...
3
votes
3answers
460 views
Java JPA one to many
I had recently posted someone about populating a JTable, which is now fully functional.
How ever, I am stuck over something else now, I'm hoping to achieve two specific thigns with this thread.
One ...
3
votes
1answer
384 views
Adding and removing items dynamically in one View with Entity Framework and MVC
I've been at this same question in different forms now for a while (see e.g. Entity Framework and MVC 3: The relationship could not be changed because one or more of the foreign-key properties is ...
3
votes
1answer
1k views
ViewModels and one-to-many relationships with Entity Framework in MVC?
I have an application for storing information about consultants in a database. The model is an Entity Framework model, and the database tables are Consultant with one-to-many relationships to a number ...
3
votes
4answers
4k views
@OneToMany and composite primary keys?
I'm using Hibernate with annotations (in spring), and I have an object which has an ordered, many-to-one relationship which a child object which has a composite primary key, one component of which is ...
3
votes
1answer
162 views
LINQ One to Many, 3 levels Deep Question
I am trying to figure out what I am doing wrong in the below LINQ statement. It doesn't like the third SELECT. It finds tblAddresse.tblAdminCounty in Intelisense when I am typing the query but when ...
3
votes
2answers
3k views
@OneToMany without inverse relationship and without a join table?
This is a similar problem to "Hibernate @OneToMany without a separate join table", in that I need a @OneToMany relationship without a join table. However, I would also like to not define the inverse ...
3
votes
4answers
137 views
sql selection from one-to-many table
I have got 3 tables with those columns below:
Topics:
[TopicID] [TopicName]
Messages:
[MessageID] [MessageText]
MessageTopicRelations
[EntryID] [MessageID] [TopicID]
messages can be about ...
3
votes
2answers
339 views
Correct NHibernate mapping for a specific scenario (one-to-many/one-to-one)
I had a following structure:
User has many books in his history
which was translated to the following
class User { ICollection<Book> History } // C#
User -> UserHistory (UserId, ...
3
votes
3answers
196 views
Commit a change to more than one branch in Git
Typical usage scenario:
I have master, branch_foo and branch_bar. All are up to date. Now, I do a "git checkout master" and work on a bug fix.
Lets say that fix was on a tracked file that is in the ...
3
votes
3answers
658 views
Ado.Net Entity : Object doesn't display linked members (foreign keys)
I have a simple databasescheme: User, Account. User has 1-to-many relationship with Account.
I have generated a ado.net entity data model, and I can create users and accounts, and even link them ...
2
votes
1answer
23 views
one-to-many form with checkboxes
I have a one to many relationship between Admins and Users.
Admin has_many :users
Admin accepts_nested_attributes_for :users
User belongs_to :admin
I'd like the admin edit form to include a list ...
2
votes
2answers
48 views
Which data structure/class I can use to represent one-to-many relation?
I am trying to write a program that would use a data structure/class that will hold multiple data entries for one key - this will be somehow similar to Dictionary but it's not one to one but one to ...
2
votes
1answer
51 views
Best way to avoid many queries in one-to-many relationship
I have a table of articles with contains id,title among others.
I have another table which contains all the images for each articles called imagePath which stores the path for images. It contains ...
2
votes
1answer
57 views
A lookup table for one-to-many relationship?
I understand that a lookup table is necessary when we are dealing with many-to-many relationship.
But what about one-to-many relationship - do we need a lookup table or a foreign key in one of the ...
2
votes
1answer
55 views
Navigation property with complex filtering criteria using Entity Framework
I use the Entity Framework 4 to migrate a legacy application to C #. The data model consists of two tables, "Appointment" and "Authorization", which are in a one to many relationship. In the ...
2
votes
1answer
43 views
Hibernate, Associations not working
I have a model like this
Seizurs => MatCountry => MatCountryI18n
When I try to query the data like so
criteria.
createAlias("matCountry","seizure_country",CriteriaSpecification.INNER_JOIN).
...
2
votes
1answer
101 views
Displaying a single value from a one to many relationship in a GridView
I have 3 tables:
Order,
OrderStates,
OrderStateDefinition
An Order has many OrderStates which then has one OrderStateDefinition.
I have a gridview in which I am trying to display only one value ...
2
votes
1answer
265 views
Inserting One to Many Entities using dapper
I have following two classes and corresponding db tables. I am trying to insert the full object graph (student with multiple courses). I am looking for an example on how would one do this using ...
2
votes
2answers
254 views
How to use many to one associations in Doctrine 2
I'm using Doctrine 2 in Zend.
I'm trying to figure out how to access the properties/method for related models from the current object.
For example, we have two tables: Schools and Students.
Many ...
2
votes
2answers
69 views
Mysql: Merging related data when a column should become unique
Given a mysql-database with tables as follows:
author:
+----+----------+
| id | name |
+----+----------+
| 1 | John |
| 2 | Peter |
| 3 | Peter |
+----+----------+
article:
...
2
votes
1answer
97 views
Return SQL one to many / one to many all in one PHP array / object?
tbl_customers
customer_id INT
...
...
tbl_orders
order_id
customer_id
tbl_orders_products
product_id
order_id
Suppose I want to access all the products ordered on all the orders by one ...
2
votes
3answers
1k views
Hibernate exception 'could not resolve property' when doing a query with Criteria and Restrictions
I have a OneToMany relation in hibernate defined like this:
@Entity
@Table(name = "groups")
public class Group extends BaseModel {// BaseModel defines id as @Id and @GeneratedValue
@OneToMany
...
2
votes
1answer
72 views
Better way to discover relationship dynamically when saving a new record? (otherSide fails)
Given this relationship:
class A {
String name
static hasMany = [b:B]
}
class B {
String name
static belongsTo = [a:A]
}
I have an record b that I want to save. I've already ...
2
votes
3answers
57 views
Better way to demand, in SQL, that a column contains every specified value
Imagine you have two tables, with a one to many relationship.
For this example, I will suggest that there are two tables: Person, and Homes.
The person table holds a persons name, and gives them an ...
2
votes
1answer
717 views
EclipseLink/JPA2 ManyToOne bidirectional cascade persist issue
This is similar to How to cascade persist using JPA/EclipseLink
I have to entities like so. One is RoomEntity that has a one to many bi-directional relationship with ComputerEntity. eg. each room has ...