Retrieves the schema type URI that is mapped to the specified entity implementation type

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

Syntax

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

Parameters

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

Return Value

Type: String
The schema type URI

Exceptions

ExceptionCondition
BrightstarDB.EntityFramework..::..MappingNotFoundExceptionRaised if type is not a mapped entity implementation type or if no schema type URI has been mapped

See Also