Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
3answers
3k views

Forcing NHibernate to cascade delete before inserts

I have a parent object which has a one-to-many relationship with an ISet of child objects. The child objects have a unique constraint (PageNum and ContentID - the foreign key to the parent). <set ...
2
votes
1answer
92 views

Error in Cascade : deleted object would be re-saved by cascade

I have a project by NHibernate implementation and using Lazy Loading. I have two class in this project : Person and Family. Relation between Those two is aggregation, is mean a Person has a list of ...
2
votes
2answers
879 views

NHibernate cascading save

This is trying to insert null into Comment.BlogArticleID. The following GenericADOException appeared: "could not insert: [NHibernate__OneToMany.BO.Comment][SQL: INSERT INTO Comment (Name) VALUES (?); ...
1
vote
2answers
100 views

Error in Cascade : a different object with the same identifier value was already associated with the session

I have a project by NHibernate implementation and using Lazy Loading. I have two class in this project : Person and Family. Relation between Those two is aggregation, is mean a Person has a list of ...
1
vote
0answers
80 views

nhibernate bidirectional mapping

Given the object model, mapping, and code below, I want to achieve the following: On SAVE of new parent Party objects, I'd like for the parent to persist child PartyNames as well. SO ideally I can ...
1
vote
4answers
1k views

NHibernate One-To-Many Delete Not Cascading

I have a 'Photo' class and a 'Comment' class. An Photo can have multiple comments assigned to it. I have this configured as a one-to-many relationship within my HBM mapping file, and have set ...
1
vote
1answer
127 views

nhibernate (or hibernate) Conditional cascading

I have a class User, that has a property Event, which has many Sessions. Basically, a user register to an event which have many sessions hours. The user can register for an event, but the sessions ...
1
vote
1answer
65 views

Nhibernate Not Updating Cascade Relation On Win Server 2008

We are using NHibernate with Fluent mapping to build a WebForms application. In our model, we have a simple References relationship with Cascade.All() set. When we save the entity, NH behaves as ...
1
vote
1answer
430 views

Hibernate: cascade question

In hibernate, there are many information about set cascade to "all, delete" and so on, but I want to know the effect of set cascade to "none" now I have a class Parent, and it's child-class Child, ...
1
vote
1answer
377 views

NHibernate ManyToMany Relationship Cascading AllDeleteOrphan StackOverflowException

I have two objects that have a ManyToMany relationship with one another through a mapping table. Though, when I try to save it, I get a stack overflow exception. The following is the code for the ...
0
votes
1answer
41 views

How to delete a collection with cascading in nhibernate?

I have this mapping public class CountryMapping : ClassMap<Country> { public CountryMapping() { Id(x => x.Id).GeneratedBy.GuidComb(); Map(x => ...
0
votes
1answer
61 views

collection cascade type in nhibernate

I am using NHibernate 3.2, and using Mapping by Code. The test case is pretty straight-forward - I have a Store and a Product, linked by a many-to-many collection. The many-to-many collection in the ...
0
votes
1answer
231 views

Fluent NHibernate cascading conventions issue - deleted instance passed to update

I normally have everything set to cascade all by using a convention, like so: public class CascadeAllConvention : IHasOneConvention, IHasManyConvention, IReferenceConvention { public void ...
0
votes
1answer
220 views

fluent nhibernate automapping one to many makes foreign key null

I am relatively new to NHberinate , and am using it as an alternative to EF cause it works nicely on Mono. All my entities are mapped with AutoMapping. The problem is I have a one to many ...
0
votes
1answer
129 views

Preventing a cascading update of a many-to-many relationship with NHibernate/FluentNHibernate,

I have a simple many-to-many relationship between the User class and the Place class. This relationship is represented by the User's "Neighbourhood" property public class User { public virtual ...
0
votes
2answers
114 views

NHibernate cascading problems

I have this mapping in one class: <class name="Parent"> <set name="Activity" table="ChangeLogs" order-by="ChangeDate desc" cascade="all-delete-orphan"> <key column="RequestID" /> ...
0
votes
1answer
214 views

Fluent NHibernate Joined References Ignoring Cascade Rule

I'm using Fluent NHibernate in an attempt to improve testability and maintainability on a web application that is using a legacy database and I'm having some trouble mapping this structure properly: ...
0
votes
2answers
244 views

NHibernate cascade and generated guid ids - why are they not generated for the children on save?

I do the following: var @case = new Case { Name = "test" }; // User is persistent and loaded in the same session User.AddCase(@case); // sets @case.User = User too ...