When implemented by a class, create a "getter" for the mapped property.
Namespace:
NHibernate.PropertyAssembly: NHibernate (in NHibernate.dll)
Syntax
Visual Basic (Declaration) |
---|
Function GetGetter ( _ theClass As Type, _ propertyName As String _ ) As IGetter |
C# |
---|
IGetter GetGetter( Type theClass, string propertyName ) |
Visual C++ |
---|
IGetter^ GetGetter( Type^ theClass, String^ propertyName ) |
JavaScript |
---|
function getGetter(theClass, propertyName); |
Parameters
- theClass
- Type: System..::.Type
The Type to find the Property in.
- propertyName
- Type: System..::.String
The name of the mapped Property to get.
Return Value
The IGetter to use to get the value of the Property from an instance of the Type.
Exceptions
Exception | Condition |
---|---|
NHibernate..::.PropertyNotFoundException | Thrown when a Property specified by the propertyName could not be found in the Type. |