Invoked by the generated class to retrieve the collection of related entities for a specific property

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

Syntax

C#
IEntityCollection<T> GetRelatedObjects<T>(
	string propertyName
)
where T : class
Visual Basic
Function GetRelatedObjects(Of T As Class) ( 
	propertyName As String
) As IEntityCollection(Of T)
Visual C++
generic<typename T>
where T : ref class
IEntityCollection<T>^ GetRelatedObjects(
	String^ propertyName
)
F#
abstract GetRelatedObjects : 
        propertyName : string -> IEntityCollection<'T>  when 'T : not struct

Parameters

propertyName
Type: System..::..String
The name of the property

Type Parameters

T
The type of entity expected

Return Value

Type: IEntityCollection<(Of <(<'T>)>)>

[Missing <returns> documentation for "M:BrightstarDB.EntityFramework.IEntityObject.GetRelatedObjects``1(System.String)"]

See Also