Return the user-visible collection (or array) instance

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

Syntax

Visual Basic (Declaration)
Public Overridable Function GetValue As Object
C#
public virtual Object GetValue()
Visual C++
public:
virtual Object^ GetValue()
JavaScript
function getValue();

Return Value

By default, the NHibernate wrapper is an acceptable collection for the end user code to work with because it is interface compatible. An NHibernate PersistentList is an IList, an NHibernate PersistentMap is an IDictionary and those are the types user code is expecting.

Implements

IPersistentCollection..::.GetValue()()()

See Also