Namespace:  NHibernate.Persister.Entity
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Protected MustOverride Function GenerateInsertString ( _
	identityInsert As Boolean, _
	notNull As Boolean(), _
	j As Integer _
) As SqlCommandInfo
C#
protected abstract SqlCommandInfo GenerateInsertString(
	bool identityInsert,
	bool[] notNull,
	int j
)
Visual C++
protected:
virtual SqlCommandInfo^ GenerateInsertString(
	bool identityInsert, 
	array<bool>^ notNull, 
	int j
) abstract
JavaScript
function generateInsertString(identityInsert, notNull, j);

Parameters

identityInsert
Type: System..::.Boolean
notNull
Type: array< System..::.Boolean >[]()[]
j
Type: System..::.Int32

See Also