Generate an info message string relating to a given property value for an entity.

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

Syntax

C#
public static string InfoString(
	string entityName,
	string propertyName,
	Object key
)
Visual Basic
Public Shared Function InfoString ( _
	entityName As String, _
	propertyName As String, _
	key As Object _
) As String
Visual C++
public:
static String^ InfoString(
	String^ entityName, 
	String^ propertyName, 
	Object^ key
)

Parameters

entityName
Type: System..::..String
The entity name
propertyName
Type: System..::..String
The name of the property
key
Type: System..::..Object
The property value.

Return Value

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

See Also