Invoked by the generated class to retrieve the collection of related entities
for a specific property
Namespace: BrightstarDB.EntityFrameworkAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public IEntityCollection<T> GetRelatedObjects<T>(
string propertyName
)
where T : class
|
Visual Basic |
---|
Public Function GetRelatedObjects(Of T As Class) (
propertyName As String
) As IEntityCollection(Of T) |
Visual C++ |
---|
public:
generic<typename T>
where T : ref class
virtual IEntityCollection<T>^ GetRelatedObjects(
String^ propertyName
) sealed |
F# |
---|
abstract GetRelatedObjects :
propertyName : string -> IEntityCollection<'T> when 'T : not struct
override 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.BrightstarEntityObject.GetRelatedObjects``1(System.String)"]
Implements
IEntityObject..::..GetRelatedObjects<(Of <<'(T>)>>)(String)
See Also