Tagged Questions
The many-to-one tag has no wiki summary.
6
votes
2answers
1k views
How do I left join tables in unidirectional many-to-one in Hibernate?
I'm piggy-backing off of http://stackoverflow.com/questions/2368195/how-to-join-tables-in-unidirectional-many-to-one-condition.
If you have two classes:
class A {
@Id
public Long id;
}
...
5
votes
1answer
81 views
How to prevent unnecessary select on insert?
I have the following scenario (in Java / Hibernate):
I have two entity classes: X and Y. X has a @ManyToOne association to Y which is not cascaded.
I create an (unmanaged) instance x of X and an ...
4
votes
2answers
1k views
Hibernate annotated many-to-one not adding child to parent Collection
I have the following annotated Hibernate entity classes:
@Entity
public class Cat {
@Column(name = "ID") @GeneratedValue(strategy = GenerationType.AUTO) @Id
private Long id;
...
3
votes
2answers
70 views
Trying to understand the importance of an owning side of a one-many relationship in ORM
Even though my question is worded specifically to the way Entity relationships are depicted in the Play framework, which uses Hibernate, I am sure this is a general concept.
When we have a ...
3
votes
1answer
843 views
Doctrine 2 - Disallow null value on foreign keys of ManyToOne relationships
I have a ManyToOne relationship in one of my entities, like so:
class License {
// ...
/**
* Customer who owns the license
*
* @var \ISE\LicenseManagerBundle\Entity\Customer
...
3
votes
2answers
745 views
Hibernate ManyToOne with FetchType.LAZY not fetching lazy
I am using Hibernate with spring.
I have a model-class like this.
@Entity
@Table(name = "forumtopic")
public final class Forumtopic extends AbstractUserTracking implements
java.io.Serializable ...
3
votes
2answers
7k views
JPA @OneToMany and composite PK
Good Morning,
I am working on project using JPA. I need to use a @OneToMany mapping on a class that has three primary keys. You can find the errors and the classes after this.
If anyone has an idea! ...
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, ...
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
97 views
Fluent NHibernate one-to-many with intervening join table?
I'm having trouble getting the Fluent Nhibernate Automapper to create what I want. I have two entities, with a one-to-many relationship between them.
class Person
{
public string name;
...
2
votes
0answers
288 views
Mapping bidirectional asymmetric relation in hibernate: OneToOne-ManyToOne
I have an entity that has reference to another entity that represents the current state of certain properties, thus allowing me to keep track of the history of changes made. For this, I have defined a ...
2
votes
0answers
61 views
How to use many-to-one associations in CompositeUserTypes
does anybody have a sample on how to use a CompositeUserType that contains a many-to-one association?
How to convert the foreign key received in the 'nullSaveGet' method into the corresponding ...
2
votes
4answers
248 views
use the one-to-many or many-to-one
Two class:
Department Task
One department can have many tasks. One task can only belong to one department.
So use one-to-many or many-to-one?
one-to-many
class Department{
private Set ...
2
votes
2answers
127 views
MySQL ORDER BY ignored with GROUP BY (Efficient work around?)
I feel there is a simple solution to this -- I've looked at other questions on Stack Overflow, but they seem to be inefficient, or perhaps I'm doing them wrong.
Here are simplified versions of tables ...
2
votes
3answers
848 views
Hibernate Many-To-One Foreign Key Default 0
I have a table where the the parent object has an optional many-to-one relationship. The problem is that the table is setup to default the fkey column to 0.
When selecting, using fetch="join", ...
2
votes
1answer
322 views
Nhibernate one-to-many lazy loading not working as expected
Consider the following scenario:
Class A has a one-to-many relationship to Class B.
Class B has a many-to-one relationship to Class C.
class A {
IList<B> BList {get;set;}
}
class B {
C ...
2
votes
1answer
501 views
Hibernate many to one delets all parents when a child is deleted
I have Country and State objects. I intend to have unidirectional many to one relationship from State to Country. I don't want to store any references to States in Country I have defined mapping as ...
2
votes
3answers
455 views
Python many-to-one mapping (creating equivalence classes)
I have a project of converting one database to another. One of the original database columns defines the row's category. This coulmn should be mapepd to a new category in the new databse.
For ...
2
votes
3answers
1k views
Rails ActiveRecord relationships - has many and belongs to associations
I've created 3 models:
Article: contains an article
Tag: contains tags
ArticleTag: meant for associating a many-to-one tags to article relationship. It contains a tag_id and an article_id.
The ...
2
votes
2answers
485 views
LINQ to SQL - retrieve object, modify, SubmitChanges() creates new objects
I've been battling this for a while. I'm trying to implement a many to one association. I have a bunch of rows in a table, called readings. These accumulate over time, and every now and then I want to ...
1
vote
1answer
19 views
SQL Join Query multiple One-to-many? or many-to-many?
Hopefully this will be an easy question!
I have two tables, a 'client(s)' table and an individual 'names' table. The basis is that a client can have one or two(max) names. I structured them like this ...
1
vote
1answer
51 views
Spring Roo generates a lot of queries
I'm trying to learn Spring Roo, and I'm doing my little application.
I have product class:
@RooJavaBean
@RooToString
@RooEntity(table = "TOWARY")
public class Product {
@Id
@GeneratedValue
...
1
vote
0answers
32 views
Zend Framework + Doctrine 2: How can I map an existing entry(language) to a new entry (user)?
I'm using zend framework in combination with doctrine 2.
What I'm currently trying to do is the following:
Saving a user with a related default language, which exists already in the database.
So I ...
1
vote
1answer
31 views
OneToMany JoinTable with a non Primary Key value
I'm trying to replicate Facebook's wall in Java EE.
I've got 3 tables:
User, Post, Wall.
User has an username(PK) and other fields, Post has an id(PK), an author(FK on User) and some other.
Wall is ...
1
vote
1answer
24 views
JPA cascade Set content
Do you know why this:
class Owner {
@OneToMany(mappedBy = "owner",
cascade = CascadeType.ALL)
public Set<Storage> storages
...
class Storage {
@ManyToOne
public Owner owner
...
...
1
vote
2answers
54 views
How to combine attributes of like features in Python
I have a text file containing Street and Page attributes. Streets may appear in more than one page, here's an example of the way my text file looks now:
Street Page
StreetA 3
StreetA 4
...
1
vote
1answer
170 views
Hibernate join mapping for many-to-one with multiple columns
I'm trying to use Hibernate to map a table as a set of DTOs into another DTO. I'm running into trouble as I need to do the mapping using two columns. Please could somone tell me what to write in the ...
1
vote
2answers
49 views
many to one mapping Hash Function
I don't know the actual mathematical term (many to one mapping is the terminology i've used)
This is my requirement:
hash_code = hash_function(element 1, element 2, ...... element n)
i should be ...
1
vote
2answers
38 views
Recommendations on implementing a static many-to-one lookup in my Android app
I need to perform a many-to-one lookup in my Android app. I store a number of phone area codes, and the states they map to. For example, 516, 518, 914 all map to New York, 213, 408, 949 are all CA ...
1
vote
1answer
57 views
Django count specific items of a many-to-one relationship
I have a Django app where users post messages and other users can vote the answers up or down, very similar to SO. I'm having an issue trying to get the "thumbs up" and "thumbs down" counts from ...
1
vote
1answer
51 views
Help managing many-to-one results for lookup
I didn't see this exactly asked, so I'm hoping it wasn't.
I have a table that has multiple columns with code variables and a table that has all lookup codes and descriptions for the whole database. ...
1
vote
2answers
208 views
Multiple relationships with single mapping table without generating foreign keys by Hibernate
I have two base abstract classes and there are multiple additional classes derived from these two, adding additional attributes etc.
There exist relations between those specific derived types.
A ...
1
vote
1answer
69 views
NHibernate: Many-to-one IUserType
Following on from this question:
NHibernate: Lazy loading of IUserType
Seeing as I can't lazy load a property or a one-to-one relationship, is there a way I can use an IUserType with a many-to-one? ...
1
vote
1answer
422 views
JPA: unidirectional many-to-one and cascading delete
Say I have a unidirectional @ManyToOne relationship like the following:
@Entity
public class Parent implements Serializable {
@Id
@GeneratedValue
private long id;
}
@Entity
public class ...
1
vote
1answer
153 views
How to create a composite primary key which contains a @ManyToOne attribute as an @EmbeddedId in JPA?
I'm asking and answering my own question, but i'm not assuming i have the best answer. If you have a better one, please post it!
Related questions:
How to set a backreference from an @EmbeddedId in ...
1
vote
3answers
170 views
JPA - OneToMany, ManyToOne, OneToOne problem
Given the following two entities :
class Parent {
@OneToMany(cascade=CascadeType.ALL)
private Set<Child> children;
(...)
}
class Child {
@ManyToOne
private ...
1
vote
1answer
124 views
Create a bidirectional ManyToOne relation
Hi I try to create a ManyToOne relation but get stucked.
I have a BILL and a Booking Class
The realation is :
A Bill can have many Bookings. (1:m)
The Bill Class should manage the relationship
A ...
1
vote
2answers
160 views
Constract JPA query for a OneToMany relation
I've those 2 entities
Class A {
@OneToMany(mappedBy="a")
private List<B> bs;
}
Class B {
@ManyToOne
private A a;
private String name;
}
1) I would like to construct a ...
1
vote
3answers
307 views
NHibernate 2.1.2 unsaved transient instance
I have read many questions and answers, but I couldn“t find solution for my problem. The problem occurs when I migrated from NHibernate 1.2.1 to 2.1.2.
I have this common error:
object references an ...
1
vote
1answer
138 views
JBoss Envers ManyToOne Auditing
Hypothetical scenario: I have two models: Author and Book. The Book model has a many-to-one relationship for Author.
Let's say that I only want to audit changes to Book. I annotate the class with ...
1
vote
1answer
130 views
Bidirectional many-to-one generates SELECT N+1
I have two classes mapped with NHibernate: class Application references class Store with a property StoreId. Application user has an identity id while class Store has an assigned id but I don't ...
1
vote
1answer
235 views
Grails many-to-one expose id without lazy load?
Grails - How can I expose the id of a many-to-one association property without forcing a load of the entire object?
class Task {
User belongsTo
User createdBy
}
class User {
...
}
Can I get ...
1
vote
4answers
193 views
Can NHibernate solve N+1 without using batching or Criteria API for an Order->Customer relationship?
I have been reading and looking around to find this answer in black and white.
Let's talk about the familiar
Customer and Order problem. Let's
say I load 100 orders, and each order
is linked ...
1
vote
1answer
208 views
NHibernate many-to-one and bidirectional access
What HBM do I have to write for Blog and Post to have a bidirectional relationship between these tables?
I tried many-to-one from both sides but run into the following problems (most likely because I ...
1
vote
1answer
486 views
NHibernate many-to-one mapping: If parent is null, set foreign-key as empty Guid instead of null
What I am trying to is really quite straigh forward, but I cannot seem to get the mapping right with NHibernate.
I am working up against a database with parent and child objects. The child objects ...
1
vote
0answers
349 views
Hibernate many-to-one annotation and error on delete
I've this bean with annotations (showing the relevant ones):
@Entity
@Table(name = "Prodotti")
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
public class Prodotto {
int id;
String ...
1
vote
1answer
472 views
Hibernate: will merge work with many-to-one object transtively?
Hi I know that and tested before merge will reattach the object back to session preventing lazy initialization exception when object is no longer in session.
a.) So I have a few question.
If i ...
1
vote
3answers
135 views
mysql many-to-one and group by giving unusual results
im having difficulty with the following fairly simple setup:
CREATE TABLE IF NOT EXISTS invoices (
id int(11) NOT NULL auto_increment,
PRIMARY KEY (id)
);
CREATE TABLE IF NOT EXISTS invoices_items (
...
1
vote
2answers
374 views
Problems with Self-referencing classes in Hibernate
I have an entity that models the parent/child structure, here is my hibernate mapping file:
<hibernate-mapping>
<class name="myPackage.entities.Module" table="MODULE">
<id ...
1
vote
1answer
116 views
how do i automap an many-to-one relationship using fluent nhibernate
i have the following class:
public class Worker
{
public int WorkerID {get;set;}
public string Name { get;set;}
}
public class TransferOrder
{
public int TransferOrderID { get;set;}
public ...