Gets or Sets if the Update Sql is built dynamically.

Namespace:  NHibernate.Mapping
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Overridable Property DynamicUpdate As Boolean
C#
public virtual bool DynamicUpdate { get; set; }
Visual C++
public:
virtual property bool DynamicUpdate {
	bool get ();
	void set (bool value);
}
JavaScript
function get_dynamicUpdate();
function set_dynamicUpdate(value);

Field Value

trueTruetruetrue (True in Visual Basic) if the Sql is built at runtime.

Remarks

The value of this is set by the dynamic-update attribute.

See Also