Type 특성(EntityType CSDL)
EDM(엔터티 데이터 모델)에서 Property 요소의 Type 특성은 형식의 인스턴스에 할당될 수 있는 데이터 형식을 지정합니다.
Department 엔터티의 다음 정의에는 4개의 Property 요소가 포함됩니다. 각 속성에는 할당된 데이터 형식을 포함한 Type 특성이 있습니다. 예를 들어, DepartmentID 속성에는 Type="Int16"
이 할당되어 있습니다. 또한 DepartmentID 속성에는 Department 엔터티의 Key 속성도 지정됩니다.
<EntityType Name="Department" >
<Key>
<PropertyRef Name="DepartmentID">
</Key>
<Property Name="DepartmentID" Type="Int16" Nullable="false" />
<Property Name="Name" Type="String" Nullable="false" />
<Property Name="GroupName" Type="String" Nullable="false" />
<Property Name="ModifiedDate" Type="DateTime" Nullable="false" />
</EntityType>