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

Syntax

Visual Basic (Declaration)
Protected MustOverride Function DoUpdateRows ( _
	key As Object, _
	collection As IPersistentCollection, _
	session As ISessionImplementor _
) As Integer
C#
protected abstract int DoUpdateRows(
	Object key,
	IPersistentCollection collection,
	ISessionImplementor session
)
Visual C++
protected:
virtual int DoUpdateRows(
	Object^ key, 
	IPersistentCollection^ collection, 
	ISessionImplementor^ session
) abstract
JavaScript
function doUpdateRows(key, collection, session);

See Also