db4o

ObjectClass.cascadeOnUpdate Method 

sets cascaded update behaviour.

[Visual Basic]
Sub cascadeOnUpdate( _ 
   ByVal flag As Boolean _ 
)
[C#]
void cascadeOnUpdate(
   bool flag
);
[C++]
void cascadeOnUpdate(
   bool flag
);
[JScript]
function cascadeOnUpdate(
   bool flag
);

Parameters

flag
whether updates are to be cascaded to member objects.

Remarks

sets cascaded update behaviour.

Setting cascadeOnUpdate to true will result in the update of all member objects if a stored instance of this class is passed to com.db4o.ObjectContainer.set .

The default setting is false.

See Also

ObjectClass Interface | com.db4o.config Namespace | com.db4o.config.ObjectField.cascadeOnUpdate | com.db4o.ObjectContainer.set | Using callbacks