[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 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 Db4objects.Db4o.IObjectContainer.Set .

The default setting is false.

See Also