1
vote
2answers
70 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
66 views
NHibernate: SaveOrUpdate by <natural-id>
Is there an easy way to make NH INSERT or UPDATE an entity depending on whether there is already an entity with same <natural-id />?
The entity is mapped to another (root) one using …
1
vote
1answer
51 views
NHibernate Many to One / One to One with differing keys
Hey all, I'm kicking the tires on NHibernate and have a conoundrum I have been scratching my head over for a bit now, working with a legacy database with some fairly complex relationships.
ClaimRoot …
0
votes
1answer
60 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
29 views
Mapping db-imported countries to address entity with JPA
I ran some DDL script to setup a complete country table in my database. The country table's primary key column contains the corresponding ISO code for every country.
In my JPA project I have a User …
0
votes
1answer
35 views
NHibernate Many-to-Once Cascade
Hi,
I have created the mapping shown below between Invoice and InvoiceDetail. When trying to update an Invoice, I notice an update statement for User as well. Why should “User” be updated when we …
0
votes
4answers
186 views
NHibernate: mapping single column from many-to-one to a primitive type
I have a following mapping:
<set name="People" lazy="true" table="ProjectPeople">
<key column="ProjectId" />
<composite-element class="PersonRole">
<many-to-one …
3
votes
2answers
75 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
1answer
49 views
NHibernate many-to-one loading alternative?
I have a Parent/Child object/mapping as follows:
class Parent {
int Id;
string name;
List children;
}
<bag name="Children" cascade="all" lazy="false ">
<key column="ParentId" />
…
0
votes
1answer
512 views
Hibernate - child collection Identifier changed in update
Hi guys, when I trying to update the object RFQ , Hibernate tends to update its child collection BQMaster and trying to set and update the identifier of BQMaster which normally it should not be …
0
votes
0answers
294 views
Nhibernate many-to-one Composite key - if null then fails? is many-to-one or none possible?
Hi
Have the mapping as shown below. this is from a leagcy db so have no control over changing the structure. The File record in some circumstances will not have a link to the DISPLAY3 table. Every …
1
vote
2answers
2k views
hibernate many-to-one hql query, when inner join fetch property not associated
I have a many-to-one association set up like this, in the hbm.xml:
<many-to-one name="gigVenue"
class="blah.blah.xxx" fetch="select"
lazy="no-proxy" not-null="true" >
<column …
0
votes
2answers
508 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
0answers
146 views
NHibernate - Multiple one-to-many relations
I have very simple object structure for Person's and their marriage relations. I have exactly same structure in the db as well.
public class Person
{
public virtual string Id { get; set; }
…
0
votes
2answers
700 views
NHibernate many-to-one relationship deleting parent only
I have a many-to-one relationship between objects Product and Supplier. I need to be able to delete Supplier without deleting the Products that belong to it.
Here is a simplified version of classes:
…
