Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
133 views

save an object with a bidirectional relationship in mongodb using official c# driver

I have two class like this: public Class Company { public IList<Employee> Employees; } public Class Employee { public Company WorkPlace; } when I want to save an object of class ...
3
votes
2answers
875 views

Why hibernate perform two queries for eager load a @OneToOne bidirectional association?

i have entity A that has-a B entity, and B has-a A with @OneToOne bidirectional association. Now, when i findall A records, hibernate perform two queries with a left outer join on B, something like ...
2
votes
4answers
133 views

What would my SQL statement be to insert “Arnold Schwarzenegger” and “Hasta la vista baby” into these two empty SQL tables?

What would my statement be to insert "Arnold Schwarzenegger" and "Hasta la vista baby" into the following empty SQL tables? The title of this question was originally going to be "How to insert the ...
2
votes
2answers
563 views

Implementing Bi-Directional relationships in MongoEngine

I'm building a Django application that uses MongoDB and MongoEngine to store data. To present a simplified and version of my problem, say I want to have two classes: User and Page. Each page should ...
2
votes
2answers
380 views

NHibernate Many to Many table is not updated

I have a 3 tables which are "News", "Tags", "News_Tags" with Many-To-Many relationship. With the following mapping the "News" and "Tags" table have been updating, but "News_Tags" has not been ...
1
vote
2answers
105 views

How to handle bidirectional relationships when constructing hibernate entities?

I want to model the relationship between two entities, a group and an account with JPA/Hibernate. An account can have several groups, but not vice versa, so we have a OneToMany relationship between ...
1
vote
1answer
212 views

Creating multiple bi-directial one-to-many associations with Fluent NHibernate automapping

I am fairly new to NHibernate and the .NET framework. I want to map my Project class, which has one-to-many relations Subproject and ProjectTask classes. public class Project : ProjectItem { ...
1
vote
1answer
1k views

NHibernate Bi-Directional one-to-one mapping problem

While trying to create a Bi-directional one-to-one mapping in NHibernate, I found that, I am unable to have the Reference of the objects recursively. For example: suppose I have one-to-one ...
1
vote
1answer
128 views

Bi-directional association between Footballer Mapper and Bowler Mapper

This question is about a specific UML diagram in the book called Patterns Of Enterprise Application Architecture, by Martin Fowler. Why is there a 'bi-directional association' between Footballer ...
0
votes
1answer
87 views

Can't clear a list of related entity beans from an entity bean

I'm trying to run the code below, but I keep getting the error "Cannot merge an entity that has been removed". My DB tables look like this: banner -id banner_period -id -banner_id -date My Java ...
0
votes
1answer
132 views

Bidirectional relationship with superclass entity property in JPA

I'm tying to implement some tree-like structure with JPA. I have a "folder" entity and a "test" entity. Folder can contain both folders and tests. Test doesnt contains anything. Both test and folder ...
0
votes
2answers
127 views

Fluent NHibernate insert parent id problem with HasMany relationship

I can't understand why NHibernate is inserting a child entity without the foreign key of the parent. The only way I found to solve this is with a Bidirectional relationship, is there another way? ...
0
votes
0answers
120 views

NHibernate bidirectional relationship with non-primary key - hbm2ddl bug?

I've read in numerous posts that it should be possible to create a bidirectional relationship with a non-primary key, and that to do so I need to use the property-ref attribute in my mappings. I'm ...
0
votes
1answer
40 views

looking for NHiberneate bi-directional relations example

I am looking for NHiberneate bi-directional relations examples to see how the xml markup and POCO classes look like, and also how to update the bi-directional relationship .
0
votes
1answer
65 views

NHibernate - three bidirectional relations between three classes gives N+1

I'm having bit complicated object model that forms a triangle. There is User entity that has collections of Items and Taxonomies. Item has a taxonomy, too. And for convenience, I wanted Item and ...
0
votes
1answer
81 views

nhibernate - nhprof -unbounded result set on lazy load for a one to many bi-directional association

I have a standard Category domain entity which has corresponding children. i.e category and its corresponding sub categories. This is shown below. Pretty standard stuff really. public class Category ...
0
votes
2answers
541 views

nhibernate mapping many-to-many: why was the whole bag collections deleted and reinserted?

Nhibernate users, professionals, gurus and developers are expected. Please help !!! I want to realise a n:m relation between two classes. A student attends in more courses and a course consists of ...
-1
votes
2answers
77 views

Does NHibernate really deliver transparent persistency

Starting to use Nhibernate for persistency being seduced by the promise that it respects your domain model, I tried to implement a relation manager for my domain objects. Basically, to DRY my code ...