[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

sets cascaded update behaviour.

Namespace: Db4objects.Db4o.Config
Assembly:   Db4objects.Db4o (in Db4objects.Db4o.dll)

Syntax

Visual Basic (Declaration)
Sub CascadeOnUpdate ( _
	flag As Boolean _
)
C#
void CascadeOnUpdate (
	bool flag
)
Visual C++
void CascadeOnUpdate (
	bool flag
)

Parameters

flag
System.Boolean
whether updates are to be cascaded to the member object.

Remarks

sets cascaded update behaviour.

Setting cascadeOnUpdate to true will result in the update of the object attribute stored in this field if the parent object is passed to ObjectContainer#set() .

The default setting is false.

See Also