Called after inserting a row, to fetch the natively generated id

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

Syntax

C#
void AfterRowInsert(
	ICollectionPersister persister,
	Object entry,
	int i,
	Object id
)
Visual Basic
Sub AfterRowInsert ( _
	persister As ICollectionPersister, _
	entry As Object, _
	i As Integer, _
	id As Object _
)
Visual C++
void AfterRowInsert(
	ICollectionPersister^ persister, 
	Object^ entry, 
	int i, 
	Object^ id
)

Parameters

persister
Type: NHibernate.Persister.Collection..::..ICollectionPersister

[Missing <param name="persister"/> documentation for "M:NHibernate.Collection.IPersistentCollection.AfterRowInsert(NHibernate.Persister.Collection.ICollectionPersister,System.Object,System.Int32,System.Object)"]

entry
Type: System..::..Object

[Missing <param name="entry"/> documentation for "M:NHibernate.Collection.IPersistentCollection.AfterRowInsert(NHibernate.Persister.Collection.ICollectionPersister,System.Object,System.Int32,System.Object)"]

i
Type: System..::..Int32

[Missing <param name="i"/> documentation for "M:NHibernate.Collection.IPersistentCollection.AfterRowInsert(NHibernate.Persister.Collection.ICollectionPersister,System.Object,System.Int32,System.Object)"]

id
Type: System..::..Object

[Missing <param name="id"/> documentation for "M:NHibernate.Collection.IPersistentCollection.AfterRowInsert(NHibernate.Persister.Collection.ICollectionPersister,System.Object,System.Int32,System.Object)"]

See Also