Returns the collection of schema type URIs that a given entity implementation type can be mapped to

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

Syntax

C#
public static IEnumerable<string> MapTypeToUris(
	Type type
)
Visual Basic
Public Shared Function MapTypeToUris ( 
	type As Type
) As IEnumerable(Of String)
Visual C++
public:
static IEnumerable<String^>^ MapTypeToUris(
	Type^ type
)
F#
static member MapTypeToUris : 
        type : Type -> IEnumerable<string> 

Parameters

type
Type: System..::..Type
The entity implementation type

Return Value

Type: IEnumerable<(Of <(<'String>)>)>
An enumeration over the collection of schema type URIs that the implementation type can be mapped to

Remarks

An entity implementation type can potentially map to multiple schema type URIs e.g. when the implementation type implements multiple interfaces or where there is an inheritance hierarchy on the interfaces

See Also