이 오브젝트의 템플리트인 EntityDef 오브젝트의 이름을 리턴합니다.
해당 EntityDef 오브젝트를 가져오려면 Session 오브젝트의 GetEntityDef 메소드를 호출하십시오.
EntityDef 오브젝트의 메소드를 사용하기 전에, Entity의 메소드를 조사하여 메소드 중 하나가 사용자에게 필요한 정보를 리턴하는지 판별하십시오. Entity의 메소드로부터 직접 EntityDef 오브젝트에서 사용 가능한 보다 일반적인 일부 정보를 확보할 수도 있습니다.
VBScript
entity.GetEntityDefName
Perl
$entity->GetEntityDefName();
VBScript
set sessionObj = GetSession
' Get the EntityDef of the record using GetEntityDefName
entityDefName = GetEntityDefName
set entityDefObj = sessionObj.GetEntityDef(entityDefName)
Perl
$sessionobj = $entity->GetSession();
# Get the EntityDef of the record using GetEntityDefName
$entitydefname = $entity->GetEntityDefName();
$entitydefobj = $sessionobj->GetEntityDef($entitydefname);