Generate an info message string relating to a particular managed collection.

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

Syntax

C#
public static string InfoString(
	ICollectionPersister persister,
	Object id,
	ISessionFactoryImplementor factory
)
Visual Basic
Public Shared Function InfoString ( _
	persister As ICollectionPersister, _
	id As Object, _
	factory As ISessionFactoryImplementor _
) As String
Visual C++
public:
static String^ InfoString(
	ICollectionPersister^ persister, 
	Object^ id, 
	ISessionFactoryImplementor^ factory
)

Parameters

persister
Type: NHibernate.Persister.Collection..::..ICollectionPersister
The persister for the collection
id
Type: System..::..Object
The id value of the owner
factory
Type: NHibernate.Engine..::..ISessionFactoryImplementor
The session factory

Return Value

An info string, in the form [Foo.bars#1]

See Also