0
votes
1answer
57 views
Person -> Details with lazy loading
Yesterday I`ve asked a question Person -> Details database structure
Now I need to make a NHibernate mapping, where the details are lazy loaded.
so my person map is:
<class name="Employee" …
1
vote
1answer
35 views
Castle ActiveRecord: one-to-one
While playing around with one-to-one associations in castle activerecord I stumbled upon the following problem:
I'm trying to model a one-to-one relationship (user-userprofile in this case). I …
1
vote
2answers
306 views
Lazy One-to-One using Proxy not working
I've got a one-to-one relation between a dealer and a seller which should be lazy using a proxy. For the side on which the foreign key is defined (the seller, references the dealer), this works fine. …
0
votes
1answer
44 views
hibernate subclass one to one mapping
hi all, i got a complicate mapping, i think it suppose to work...but why it compile A.d column is not existed???
public abstract Class A {
private Integer Id;
..
...
}
public Class SubA extend A {
…
31
votes
22answers
2k views
Is there ever a time where using a database 1:1 relationship makes sense?
I was thinking the other day on normalization, and it occurred to me, I cannot think of a time where there should be a 1:1 relationship in a database.
Name:SSN? I'd have them in the same table
…
3
votes
2answers
71 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, …
0
votes
0answers
11 views
How to do Insert New Result At the same Table by one-to-one Relation using Fluent
At Same table I Have 2 Objects: Product, ProductDetail
public class Product
{
public virtual int ID {get;set;}
public virtual string Name {get;set;}
public virtual Detail {get;set;}
}
…
0
votes
3answers
301 views
Hibernate getting on my nerve. Delete question on One To One relationship.
Hi all, I have these classes.
@Entity
@Table(name ="a")
class A{
private Integer aId;
private B b;
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name = "id_a")
public …
0
votes
2answers
485 views
How to lazy load a one-to-one composition via hql
If have an entity A with a bidirectional one-or-zero-to-one mapping with entity B.
The mapping is as follows:
<class name="EntityA" table="TABLE_A" mutable="true" lazy="true">
<id …
0
votes
1answer
108 views
DataMapper has_one problem
Hello. I`m having trouble associating models in DataMapper. Its really simple, but i just can get the idea.
So, i have 2 tables:
1. Books
-> id
-> title
-> publisher_id
2. Publishers
-> …
0
votes
2answers
44 views
A question about storing data that should have been in the same table
The software I'm working with has 2 tables, lead and customer. When we sell our product to someone, a record is created in the customer table with data from the lead table (as well as some additional …
1
vote
2answers
956 views
NHibernate, one-to-one mapping, cascade insert
I have a one-to-one relationship between a Company class and a CompanySettings class. When I create a new Company object, (a CompanySettings object is created in Company's constructor for its Settings …
1
vote
1answer
141 views
Basic Rails Question: One-to-One relationships
My comprehension of RoR is sadly lacking. I have three one-to-one relationships that I want to maintain in one view. I have the following models:
class Ood< ActiveRecord::Base
has_one …
0
votes
3answers
269 views
A Proper One-to-One Mapping Table
I want to make a table that simply has two integer columns to serve as a mapping table between two different data sets and I wish to put the correct constraints on it.
I initially set the two columns …
3
votes
10answers
833 views
One to One database relation?
In my free time I started writing a small multiplayer game with a database backend. I was looking to separate player login information from other in game information (inventory, stats, and status) and …
