Delegate method to handle the scenario of an entity not found.

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

Syntax

C#
void HandleEntityNotFound(
	string entityName,
	Object id
)
Visual Basic
Sub HandleEntityNotFound ( _
	entityName As String, _
	id As Object _
)
Visual C++
void HandleEntityNotFound(
	String^ entityName, 
	Object^ id
)

Parameters

entityName
Type: System..::..String
The entityName (may be the class fullname)
id
Type: System..::..Object
The requested id not founded.

See Also