The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
21 views

Issue with adding a one-to-one foreign-key connection to a RestKit mapping

I am trying to add a connection to a RestKit mapping but without success. My JSON is as follows: { parent: { token: "token" title: "title", description: "description", child_id: 1 ...
0
votes
0answers
17 views

How to make a OneToOne relationship with FOSUserBundle?

I want to separate User login credentials from user Profile, so I created a Profile Bundle to connect to FOSUser with a 1to1 relationship, so when a user register, a relation is made between the ...
1
vote
1answer
78 views

EF Code First one to one relationship

I have the following situation: public class User { public int ID { get; set; } public string Name { get; set; } // ... public virtual Address Address { get; set; } } public class ...
1
vote
1answer
24 views

Eager loading an optional one-to-one with NHibernate

Consider the following simplified domain: public class Movie { public virtual int Id { get; set; } public virtual MovieDetail MovieDetail { get; set; } } public class MovieDetail { ...
3
votes
1answer
58 views

Problems creating a one-to-one relationship with an access database in c#

I am trying to create a one to one relationship in a Microsoft Access database using c#. So far, I have the following code which (from what I understand) should create a one-to-one relationship: ...
0
votes
0answers
45 views

unable to create one-to-one relationship

I'm unable to create one-to-one relationship in multiple databases ( mysql, db2). here is my declaration: --<ScriptOptions statementTerminator=";"/> CREATE SCHEMA "mydb"; CREATE TABLE ...
0
votes
0answers
16 views

one-to-one cardinality change in one-to-many

I'm not able to create one-to-one relationship both in db2 and mysql here is my snippet code for the foreign key : CONSTRAINT fk_MEMBERSHIP_DOCUMENT1 FOREIGN KEY (enrollment_doc_id ) ...
1
vote
3answers
46 views

JPA @OneToOne with same type

How to annotate my code to have a Person with 2 Addresses : @Entity public Person { // ... other attributes for a person @OneToOne public Address homeAddress; @OneToOne public ...
1
vote
1answer
104 views

Entity Framework atypical 1-[0..1] — model-only Association — EF LINQ select possibilities

Suppose the following tables ParentEntities ParentID ChildEntities ChildID ParentID These tables do not have a FK defined in the schema. In EF designer, after generating from DB, I ...
0
votes
2answers
113 views

Hibernate One to One Association when key names are different

I have two tables with composite id having one to one relationship. Table One : PK Columns : column1, column2 Table Two : PK Columns : column3, column4. Columns are having different names. I have ...
0
votes
4answers
76 views

Implementing 1 to 1 classes in java

I have a problem about implementing a 1 to 1 association in java. For example, conside the following class diagram: I implement it like this: public class Student{ private AttendanceRole ...
0
votes
1answer
38 views

One to One Relationship With Shared not Working at Execution time

Im using EclipseLink(JPA 2.0) with MySql and I'm having a problem with something in the model. I have 2 entities: Delincuente, PerfilFisico. They share the Delincuente's Pk. The DB is working ...
0
votes
1answer
66 views

Hibernate One To One Bidirectional Not working

I am trying to make my code have a bidrectional relationship(One TO One) But apparently the code is not working. here's the First Class. public class User { @OneToOne(cascade = ...
1
vote
2answers
103 views

Spring Data JPA with @OneToOne relation fails to update already persisted entity

We got this setup: A document has a list of elements and these elements are subclasses of Element, in this example Link. A Link has a @OneToOne relation to Resource. Everything worked as long as we ...
0
votes
2answers
95 views

Django: three models in relation to each other, what is the best way

I have an online shop. there are single items to buy, but there are also some sets which contain some of those single items. Now i am trying to find the best/usefull solution for these relations. That ...
0
votes
1answer
48 views

How to spring bind for multiple level classes like student.userAccount.role?

I want to know how to perform spring binding for multiple level class mapping. I will take an example and explain my problem. Suppose I have a class hierarchy which says that a Student(POJO) has a ...
0
votes
1answer
27 views

Eclipselink JPA MappingSelectionCriteria costumization

According to EclipseLink/Examples/JPA/MappingSelectionCriteria I can make some filtering on OneToOne or OneToMany relationships. To do that I have to implement DescriptorCustomizer. My question is: ...
0
votes
2answers
47 views

How can I use the same ObjectId for 2 collections using MongoEngine ReferenceField?

I have a fairly heavy User document class, and I would like to cut it in two pieces: the user's profile (name and avatar) in a UserProfile document and the rest in a User document, like this (using ...
0
votes
1answer
89 views

Symfony2 Doctrine2 trouble with optional one to one relation

I have a problem with Doctrine2 in Symfony2 and two relationed entities. There is a user-entity that can (not must) have a usermeta-entity referenced which contains information like biography etc. ...
0
votes
1answer
192 views

Fluent NHibernate One-to-One mapping

I am having a really hard time exploiting HasOne mapping with Fluent NHibernate. Basically, the class A can have a matching (only one or none) record in the class B. Please help with the AMap and ...
2
votes
1answer
179 views

hibernate one to one on foreign key

I have a main table that is D1 which has a unique id of d1Id. d1Id uniquely identifies the D1 records and is also a primary key on the table. I have table 2 which is D2 which has a d2seq as a primary ...
0
votes
1answer
16 views

relation one_to_one: get a list of non-linked “belongs_to” entities

I have an optimization question. I search how to use ActiveRecord to do a request to get all entities in a one_to_one or one_to_many which don't have any link. I have: class Model1 < ...
1
vote
1answer
35 views

Automatically creating a OneToOneField when accessed

I have two models: class Profile(models.Model): # (...) settings = models.OneToOneField('Settings', null=True) # (...) class Settings(model.Model): # (...) Is there a way to create ...
2
votes
1answer
60 views

How to create a file of unique database records with a One to One relationship in Java?

I have many tables that have a One to One relationship with a table Client, mapped by Hibernate. I need to create a file of unique Clients after a select on each of these tables using threads. Each ...
0
votes
1answer
51 views

how to persist a OneToOne variable for a given entity in JPA

I have two entities: Student and Address I added an OneTeOne annotation in the Student class and in JSP page, I can get an address for a given student using ${stud.address.country} in a foreach JSTL ...
0
votes
0answers
154 views

Forcing optional=false for one-to-one relations with Hibernate reverse engineering

I'm using Hibernate reverse engineering to generate models from an Oracle Database. I don't use the eclipse plugin for Hibernate Tools, I run the hibernatetool task directly from ant. My build.xml ...
0
votes
0answers
293 views

How to use One to many relation using UserProfile table in MVC4 - ForeignKey Mapping in EF

I am tring to relate the "UserProfile" to another model "Data". UserProfile Model: [Table("UserProfile")] public class UserProfile { [Key] ...
0
votes
1answer
258 views

Hibernate one-to-one null in foreign key

Am trying to do "one to one" mapping with hibernate entities. student table has contact_info as a foreign key reference. When i save the student object, foreign key sets as NULL. here i have ...
1
vote
1answer
51 views

One to one/ one to many

I have a Transaction model that has a one to one relationship with Service model, and then the Service model has many ServiceAddons. public class Transaction { public int TransactionId ...
0
votes
1answer
40 views

Django OneToOneField subset of a ManyToManyField

Basically I am writing a website to models Sports Teams and I have two models, Player and Team. A Team has a ManyToManyField relationship with player and also a OneToOneField representing the captain ...
0
votes
3answers
74 views

Rails one-to-one relationship

I have the following: class User < ActiveRecord::Base has_one :car, :class_name => 'Car', :foreign_key => 'user_id' class Car < ActiveRecord::Base belongs_to :worker, :class_name ...
0
votes
0answers
50 views

How to define mutually exclusive subtypes in access

I want to do the following in access: I have 2 tables: "Matrix" and "Land" My client needs to keep track of events that can occur to a Matrix or a Land, but in the future, more tables might need ...
0
votes
0answers
102 views

fluent api one to one relationship foreign key

In order to use a stored procedure with my code first application i need to add explicit foreign key to my database . currently my models are mapped like that i have a model user that has the ...
0
votes
1answer
65 views

one-to-one NHibernate mapping

I've been at this for the last 3 days and still can't figure it out. Conceptually I need to design an envelope object and its to and from addresses (object). I have the following database schema ...
3
votes
1answer
208 views

Creating PostgreSQL tables + relationships - PROBLEMS with relationships - ONE TO ONE

So I am supposed to create this schema + relationships exactly the way this ERD depicts it. Here I only show the tables that I am having problems with: So I am trying to make it one to one but for ...
0
votes
2answers
348 views

EF5 one-to-one without navigation

I'm trying to do a one-to-one relationship, with the navigation property just on one side (MVC4, EF5, code first). public class User { public int UserId { get; set; } //PK public int RankId { ...
0
votes
1answer
149 views

EF5 Fluent API one-to-one without navigator

In Fluent API, EF5, is possibile to configure a One-To-One relationship, through a Join table (if is a good idea, not sure about that)? I don't need a navigation from right to left, just from left to ...
2
votes
1answer
113 views

doctrine oneToOne mapping of one entity with many other entities do not relate those in database schema

I have region entity and regionEmploymentDetails, regionEducationDetails, regionPowerDetails entities which hold regions employment, education and power details. Entities are kept separate because ...
1
vote
2answers
287 views

Hibernate one-to-one mapping with a reference column (XML mapping)

I have a user table and a user_detail table with one to one mapping user_detail table have a field user_id to be used for this relation which stores id field value of corresponding user. How to write ...
0
votes
2answers
81 views

Nhibernate generating too many queries for one to one mapping

When the application loads, I am charging all the Campaigns into the memory: var all = session.Query<Campaign>().ToList(); Campaign has one service. public CampaignMap() { ...
0
votes
1answer
202 views

Hibernate one-to-one annotation exception

I need some basic help with setting up a one-to-one mapping and query. I know this should be all over the internet, but I could not find a good explanation/example 2 Tables: place and place_info ...
0
votes
0answers
56 views

Mapping Cross Table in Hibernate

I am using hibernate tools to map my MySql database tables. There is a many-to-many mapping between two tables, the mapping files (.hbm.xml) and POJOs are generated correctly for the two tables, but ...
0
votes
0answers
70 views

Symfony2 - oneToOne relation is not lazy

Please advice how to avoid linked object fetching until I invoke the property when using oneToOne relation. Lazy load works with oneToMany relations but not with oneToOne. I have the following entity ...
1
vote
1answer
32 views

CoolStorage can't set One-To-One relationship

The issue is that I can't understand how to make a OneToOne relation between two objects the way for the first object to have a link to the second and for the second to have a link to the first. ...
0
votes
2answers
185 views

Entity Framework Two foreign key in one table

I have two Entities pubic class Person { [Key] public string Name {get;set;} public virtual Phone homePhone {get;set;} public virtual Phone cellPhone {get;set;} } public class Phone{ [Key] ...
0
votes
1answer
190 views

EF CodeFirst Mapping Two Cascade Delete Relationships

I have some issues getting cascading to work on my optional one-to-one and one-to-many relation. Enabling 1 of them works fine but enabling both results in a 'possible circular cascading exception'. ...
0
votes
0answers
109 views

How to work with OnetoOne annotation in hibernate?

I am working on an Swing application with hibernate ORM and MySql as a database, i am new to hibernate with JPA, and during the development i have faced a lot of problems to annotate the entities. ...
0
votes
1answer
376 views

Spring JPA Hibernate Oracle @OneToOne with Shared Primary Key fails on insert - foreign key violation

I have 2 Entities that I am trying to set up using a @OneToOne relationship. I am using Oracle 11g as the database and User Table has a generated ID via a sequence. This Id from the user table is the ...
2
votes
1answer
253 views

Delete one-to-one: Hibernate 3 + Spring 3 + PostgreSQL 9.1

This is my first post and I am new to Hibernate + Spring. I am using XML for Hibernate mapping declaration in my applicationContext.xml file. Briefly, I am trying to do: parent.setChild(null); ...
0
votes
1answer
437 views

JPA 2.0 + One to One + Shared Primary Key not being set

Have to two tables Customer and Upload, where I track the number of items the customer has uploaded. It is a one to one relationship with a shared primary key CustomerID, which is a unique ...

1 2 3 4 5 7