Returns the collection of literal values for a property of this entity

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

Syntax

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

Parameters

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

Type Parameters

T
The type of literal value to return

Return Value

Type: LiteralsCollection<(Of <(<'T>)>)>
The collection of literal values

See Also