views:

86

answers:

1

Use these 2 persistent CFCs for example:

// Cat.cfc
component persistent="true" {
  property name="id" fieldtype="id" generator="native";
  property name="name";
}

// Owner.cfc
component persistent="true" {
  property name="id" fieldtype="id" generator="native";
  property name="cats" type="array" fieldtype="one-to-many" cfc="cat" cascade="all";
} 

When one-to-many (unidirectional) Note: inverse=true on unidirectional will yield undesired result:

insert into cat (name) values        (?)
insert into Owner default values
update cat set Owner_id=? where id=?

When one-to-many/many-to-one (bi-directional, inverse=true on Owner.cats):

insert into Owner default  values
insert into cat (name, ownerId) values (?, ?) 

Does that mean setting up bi-directional o2m/m2o relationship is preferred 'cause the SQL for inserting the entities is more efficient?

A: 

'Preferred' is complicated.

While for 'cat' the idea of a default owner doesn't make sense, it might do for a factory or shop situation, where once a 'product' is created it get's a default 'location' of 'the factory'.

Tom Chiverton