0
votes
2answers
25 views
nHibernate one-to-many inserts but doesnt update
Instead of getting into code, I have a simple question. Default behavior for a simple one-to-many is that it inserts the child record then updates the foreign key column with the …
0
votes
2answers
304 views
The correct NSPredicate format for one-to-many relationship in Core Data
Hello,
I have a managed object model A and B with one-to-many relationship.
For this particular task, I want to retrieve all A objects which has a relation to B with a property m …
1
vote
1answer
702 views
Left outer join fetch doesn’t fill map collection properly (HQL)
I've got classes with mappings like this:
@Entity
public class CurrencyTable {
@Id
@GeneratedValue(strategy = GenerationType.SEQUENCE)
private Long id;
@Version
…
0
votes
1answer
25 views
Core Data: re-setting to-many relationship
Hi,
I have created model which you can see there:
http://i.imagehost.org/0836/2009-11-08%5F14%5F37%5F41.png
I want to store information about sound categories and some sample sou …
0
votes
3answers
49 views
Value object or entity object in my Hibernate mapping?
Hey everyone,
I'm trying to design a pretty simple app and am getting myself a bit confused with Hibernate's definition of entity and value objects (as defined in Chapter 4 of Jav …
1
vote
4answers
29 views
Acts_as_tree - one-to-Many: Show Records associated with children on parent page
Hi, I have a relatively simple one-to-many relationship and use acts_as_tree to get it organized in the view. It kinda looks like this:
Root
|_Product 1
|_Product 2
|_Cate …
0
votes
2answers
271 views
SubSonic 3 - Simple repository - One to many relations
Hi,
It's the first time I use Subsonic.
Let say I have those classes :
public class Store
{
public int Id { get; set; }
public String Name { get; set; }
}
public class …
0
votes
1answer
78 views
One-to-Many Unidirectional Parent-Child ID Cascade Save
When trying to save an ID from my parent class into a child class, I keep getting the error
"ERROR - Field 'parent_id' doesn't have a default value"
I have tried all types of mapp …
0
votes
3answers
78 views
Fluent NHibernate AutoMapping throws “StaleStateException” when try to Commit a List<>
The following code throws a StaleStateException exception when the Order.OrderItems property (an IList) is Commited. The full text of the exception is:
An unhandled exception of …
0
votes
2answers
132 views
Subsonic - can anyone provide an example of using Subsonic SimpleRepository to persist a list/array of objects?
I'm looking for possible ways to persist the following classes. Subsonic SimpleRepository looks like it might work, and people have said it should, when I asked a more general que …
0
votes
0answers
43 views
nHibernate one-to-many mapping question
Hello folks,
I am getting this exception when mapping one-to-many relation. my mapping xml looks like this:
<set name="-----" generic="true" inverse="true" cascade="all" lazy …
3
votes
2answers
60 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 -> User …
1
vote
2answers
209 views
JPA one-to-many relationship question (relations on one entity)
In this JPA example there is a code:
@OneToOne(cascade=CascadeType.ALL)
private Deity mother;
@OneToOne(cascade=CascadeType.ALL)
private Deity father;
@OneToMany(cascade=Cascade …
2
votes
2answers
60 views
Linq to Sql Many-One relationship
I have 2 views in SQL set up:
PurchaseOrder
PurchaseOrderLineItems
These have many columns aliased (the tables they view/join are not sensibly named... it's a 3rd party product …
0
votes
0answers
20 views
Override targEntity in descendant entity bean
I have two separate databases that contain a report and reportItems table. The table structure is the same for both databases.
I have a session bean that needs to write to each da …
