Get Type of entity by its unique ID. Because all entities are stored in the same table, so each ID is unique to specific entity type

Namespace: Cartella.Interfaces
Assembly: CartellaData (in CartellaData.dll) Version: 4.1.0.171 (4.1.0.171)

Syntax

C#
IEntityType GetEntityTypeByEntityID(
	string entityID
)
Visual Basic
Function GetEntityTypeByEntityID ( _
	entityID As String _
) As IEntityType
Visual C++
IEntityType^ GetEntityTypeByEntityID(
	String^ entityID
)

Parameters

entityID
Type: System..::..String
ID of entity

Field Value

IEntityType

Return Value

Type of entity as IEntityType instance

See Also