Locate the contained tuplizer responsible for the given entity-mode. If no such tuplizer is defined on this mapping, then return null.

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

Syntax

C#
public virtual ITuplizer GetTuplizerOrNull(
	EntityMode entityMode
)
Visual Basic
Public Overridable Function GetTuplizerOrNull ( _
	entityMode As EntityMode _
) As ITuplizer
Visual C++
public:
virtual ITuplizer^ GetTuplizerOrNull(
	EntityMode entityMode
)

Parameters

entityMode
Type: NHibernate..::..EntityMode
The entity-mode for which the caller wants a tuplizer.

Return Value

The tuplizer, or null if not found.

See Also