Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

54
votes
22answers
4k 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 ...
11
votes
3answers
296 views

Hibernate cache for mappedBy object

I have code like: @Entity @Table(name = "A") @Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) public class A { @OneToOne(cascade={CascadeType.ALL}, fetch=FetchType.EAGER, mappedBy="a") ...
7
votes
5answers
730 views

JPA @OneToOne throws Error when mapped to an abstract @Entity with subclasses

I have a problem when an Entity is mapped to another Entity which has a direct implementation on its subclasses. See sample mapping below: @Entity class Location { @OneToOne ...
7
votes
2answers
12k views

NHibernate one-to-one mapping where second table data can be null

I have an existing database with the table Transactions in it. I have added a new table called TransactionSequence where each transaction will ultimately have only one record. We are using the ...
6
votes
2answers
450 views

How to do this Unidirectional NHibernate one-to-one mapping?

This is a problem of unidirectional one-to-one mapping in NHibernate. Student.cs public class Student { public int ID { get; set; } public int Roll { get; set; } public int RegNo { get; ...
5
votes
3answers
135 views

In a One to One relationship should i drop one of the table's id column?

I have the following 2 tables in MySQL: Customer(Id, Firstname, Lastname...) Bonus(Id, CustomerId, Value, ...) The relation is One-To-One, every customer has only one bonus.(the CustomerId is ...
5
votes
4answers
152 views

In SQL / MySQL, are there reasons not to put one-to-one relationship in the same table?

One-to-one relationship could usually be stored in the same table. Are there reasons not to store them in the same table?
4
votes
2answers
140 views

Good way to do “either/or” relationship in Entity Framework (SQL Server)

Let's say I have two entity objects "table" and "chicken." Now let's say, I have a "wing" object, and I want that wing to have a 0..1-1 relationship with table and chicken. In otherwords, I want a ...
4
votes
1answer
423 views

One-to-one association in form?

In symfony 2.0, how to create a drop down list using one-to-one association in form? Can you guys put good example please?
4
votes
2answers
366 views

NHibernate one-to-one mapping, non-primary keys

Can't get NHibernate to generate the correct query. It keeps using the primary keys of the two tables I'm joining for the one-to-one relationship, and I can't figure out how to specify the foreign key ...
4
votes
2answers
247 views

(1+N) selects with OnetoOne associations

Considering the following model: @Entity public class User { @Id @Column(name = "USER_ID") private Long userId; @Column(name = "FIRST_NAME") private String firstName; ...
4
votes
3answers
2k views

Fluent NHibernate & one-to-one

For a (very) long time I've been looking for an example on how to correctly implement a one-to-one mapping with Fluent NHibernate. Most resources I find say I think you mean a many-to-one ...
3
votes
2answers
96 views

Creating a one-to-one relation for a pre-existing record using Doctrine ORM (1.2)

Background / Application I have two database tables, supplier and address with a one-to-one relationship, as not all suppliers have an address (and this is just a simplified example from a larger ...
3
votes
1answer
1k views

EF Code First - 1-to-1 Optional Relationship

I want to map an optional 1-to-1 relationship in an existing database with EF Code First. Simple schema: User Username ContactID Contact ID Name Obviously ContactID joins to Contact.ID. The ...
3
votes
4answers
226 views

Referential integrity with One to One using hibernate

I'm having two tables - Foo { foo_id, name } Foo_properties { fp_id, foo_id, phoneNumber} Now I want to map this in my object model using hibernate.. I need a foo_id in Foo_properties because i ...
3
votes
3answers
81 views

Nested types or other solution for one to one mapped classes

I have a class which needs some functionality to be encapsulated in some way. I was thinking of a nested class, and put that functionality plus some states into it. The relation between these two ...
3
votes
3answers
253 views

Deleting from table with @OneToOne annotation

I'm using JPA2 and Hibernate implementation. I've got simple mapping like this : @Entity class Topic { @Id @GeneratedValue(strategy = IDENTITY) int id; @OneToOne(cascade = ALL) ...
3
votes
1answer
269 views

One to One error in Entity Framework 4

I have already read Entity Framework One-To-One Mapping Issues and this is not duplicate as the business rule specs are different here. There are two tables, Invoices and Orders. Invoices -> ...
3
votes
1answer
303 views

Secondarytables or OnetoOne associations?

Considering the following "model": USER Long: PK String: firstName String: lastName USER_EXT Long: PK String: moreInfo Date: lastModified I'm trying to find/create the ...
3
votes
2answers
434 views

One to one relationship in Sql Server and LINQ

I have a Users table and a profile table. The reason they are separate is because information about the user can be put in before they are registered for the site. The problem I'm running into is ...
3
votes
2answers
2k views

Hibernate one-to-one entity association with shared PK between 3 classes

I want a unidirectional one-to-one relationship between objects of 3 java classes: Person to Heart, and Person to Liver. I want the objects to share the same PK i.e. every person has a corresponding ...
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
2answers
1k 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. ...
3
votes
2answers
4k 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 ...
3
votes
10answers
2k 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 ...
2
votes
0answers
56 views

Problems with a Sharp Architecture HasOne relationship

I'm building a direct port of the ASP.NET Membership Provider from SQL to Sharp Arch 1.9.6 (using Fluent NHibernate). The issue comes up when trying to create the one-to-one relationship between the ...
2
votes
1answer
46 views

Entity Framework Code First One to One Constraint Violation

Given the following simplified model: public class Account { public Account() { Id = Guid.NewGuid(); ContactCard = new ContactCard(); } //[ForeignKey("ContactCard")] ...
2
votes
3answers
64 views

Django: following the reverse direction of the one-to-one relationship

I have a question about the way Django models the one-to-one-relationship. Suppose we have 2 models: A and B: class B(models.Model): bAtt = models.CharField() class A(models.Model): b ...
2
votes
1answer
133 views

How to Define a One-Side-Optional One-to-One Relationship in SQL Server and LINQ-to-SQL?

I am trying to create a one-to-one relationship that is optional on one side between a User table and a UserInfo table. The specifications are that a UserInfo must have exactly one User, while a User ...
2
votes
1answer
244 views

JPA/HIbernate: Joining 2 Entities Multiple Times

I have a legacy database which can't be changed because it's hooked up to a 3rd party application. One of the queries I'm working with for a new application looks like the following: SELECT COL1, ...
2
votes
1answer
283 views

How to imitate django admin's OneToOneField optional form

I would like to imitate the functionality that the Django Admin site offers when a model has a OneToOneField to another model, where it is optional to fill the form for the OneToOne model. The form ...
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
1answer
466 views

Entity Framework saving data in one-to-one associations

I'm trying to use the foreign key association approach to achieve a one-to-one association in EF. In my case there's an association between a User and a Team, and I need a navigation property in each ...
2
votes
1answer
105 views

How to do a mutual deletion of a one-to-one in Symfony?

I have tables with a one-to-one. In my config/doctrine/schema.yml, my both tables respectively have: TableA: #... relations: TableB: { onDelete: CASCADE, local: id, foreign: table_a_id } et ...
2
votes
5answers
279 views

Map One-To-One Relationship Doesn't Allow Inserting

I'm trying to setup a one-to-one mapping from my Users to the UserDetails table. Say I have the following tables in my database: Users: - UserID (PK, Identity) - UserName - Password UsersDetails: ...
2
votes
2answers
74 views

Choose between one-to-one and component in NHibernate

I am trying to map classes User and Profile, just as the following: public class User { public long ID { get; set; } public string LoginName { get; set; } public Profile Profile { get; ...
2
votes
1answer
367 views

prevent insert while select query, hibernate

new to hibernate. I have a problem that when i am trying to run select query say "from Foo where Foo.some_id=2" (with hibernate template) then hibernate is also tries to insert the records in a ...
2
votes
2answers
362 views

Convert many to many to one to one (mysql)

We changed database schema and moved a relationship between users/accounts from a 1-1 to a many to many using a join table accounts_users. So we have accounts, users, accounts_users (user_id and ...
2
votes
1answer
1k views

Hibernate JPA one-to-one saving child class entity

I have a one-to-one relationship using PrimaryKeyJoinColumn annotated on the parent side. And now I want to save the child entity by itself. For example, I have Employee and EmpInfo as the child ...
2
votes
2answers
332 views

Nullable One To One Relationships with Integer Keys in LINQ-to-SQL

I have two objects (Foo and Bar) that have a one-to-zero-or-one relationship between them. So, Foo has a nullable foreign key reference to Bar.ID and a (nullbusted) unique index to enforce the "1" ...
2
votes
4answers
1k views

Optional one-to-one mapping in Hibernate

How do I create an optional one-to-one mapping in the hibernate hbm file? For example, suppose that I have a User and a last_visited_page table. The user may or may not have a last_visited page. Here ...
2
votes
2answers
529 views

Cascade issue when deleting an entity in a one-to-one relationship using Fluent NHibernate

I have the following db tables which I have simplified for this example: Webpage Id, URLIdentifier WebpageMetaData Webpage_id Keywords Webpage_id is the primary key for the table and a foriegn key ...
1
vote
2answers
27 views

Why @OneToOne is allowing duplicate associations?

I have User and Address classes as follows: class User { ... ... @OneToOne( cascade=CascadeType.ALL) @JoinColumn(name="addr_id") private Address address; } class Address { ... ...
1
vote
2answers
30 views

OneToOne mapping not working for abstract subclasses

I am having a frustrating mapping issue and definitely need some eyeballs. I have an abstract class that has subclasses with an inheritance strategy of single table. It holds a contact and that needs ...
1
vote
0answers
24 views

multiple relationships with same table by Dataannotation with code first

I have the following model: public class Member { public int Id { get; set; } public string Username { get; set; } public int MainEmailId { get; set; } public virtual Email MainEmail { get; ...
1
vote
0answers
56 views

Fluent Nhibernate One to One Relationship AutoMapping

Is it possible for tables which have one to one relationship to be automapped by FluentNhibernate? It seems that Auto Mapping only works for one to many and many to many relationships. Can you give ...
1
vote
1answer
95 views

Doctrine 2 one-to-one via composite key

I am trying to set up a relationship as shown below. Each car can have one review. A car has a primary key on 2 columns. Review is referenced back to the car via the composite primary key. Simple, in ...
1
vote
1answer
28 views

JPA one-to-one mapping gives sax parse exception

I'm getting org.xml.sax.SAXParseException's when trying to map a one-to-one relation in JPA Everything is working fine until I change from <transient name="testCase"/> to: ...
1
vote
1answer
66 views

EF 4.1 Code First - Mapping a one to one relationship with non standard column names

I know a lot of people is asking about one-to-one relationships on EF 4.1 but I can't seem to find an answer for this problem. I have these POCO classes: public class Contact { public decimal ...
1
vote
1answer
118 views

Hibernate @OneToOne with superclass, only retrieve superclass fields on join

I have mapped my inheritance hierarchy in Hibernate using InheritanceType.Single_Table and discriminator columns to distinguish between the different entities. All subclasses of the superclass store ...

1 2 3 4