Probably more aptly named something like doCascadeToCollectionElements(); it is however used from both the collection and to-one logic branches...

Namespace: NHibernate.Engine
Assembly: NHibernate (in NHibernate.dll) Version: 3.2.0.4000 (3.2.0.4000)

Syntax

C#
public virtual bool ReallyDoCascade(
	CascadingAction action
)
Visual Basic
Public Overridable Function ReallyDoCascade ( _
	action As CascadingAction _
) As Boolean
Visual C++
public:
virtual bool ReallyDoCascade(
	CascadingAction^ action
)

Parameters

action
Type: NHibernate.Engine..::..CascadingAction
The action to be checked for cascade-ability.

Return Value

True if the action should be really cascaded under this style; false otherwise.

Remarks

For this style, should the given action really be cascaded? The default implementation is simply to return {@link #doCascade}; for certain styles (currently only delete-orphan), however, we need to be able to control this separately.

See Also