Gets or Sets if the Insert Sql is built dynamically.

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

Syntax

Visual Basic (Declaration)
Public Overridable Property DynamicInsert As Boolean
C#
public virtual bool DynamicInsert { get; set; }
Visual C++
public:
virtual property bool DynamicInsert {
	bool get ();
	void set (bool value);
}
JavaScript
function get_dynamicInsert();
function set_dynamicInsert(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-insert attribute.

See Also