Returns the value of a property of the object

Namespace: BrightstarDB.EntityFramework
Assembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)

Syntax

C#
public T GetRelatedProperty<T>(
	string propertyName
)
Visual Basic
Public Function GetRelatedProperty(Of T) ( 
	propertyName As String
) As T
Visual C++
public:
generic<typename T>
T GetRelatedProperty(
	String^ propertyName
)
F#
member GetRelatedProperty : 
        propertyName : string -> 'T 

Parameters

propertyName
Type: System..::..String
The name of the domain object property to inspect

Type Parameters

T
The type of item to return

Return Value

Type: T
The value to provide for the property

See Also