Gets or Sets if the Insert Sql is built dynamically.

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

Syntax

C#
public virtual bool DynamicInsert { get; set; }
Visual Basic
Public Overridable Property DynamicInsert As Boolean
	Get
	Set
Visual C++
public:
virtual property bool DynamicInsert {
	bool get ();
	void set (bool 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