Type 屬性 (EntityType CSDL)
在 實體資料模型 (EDM) 中,Property 項目的 Type 屬性會指定可以指派給此型別之執行個體的資料型別。
下列 Department 實體定義包含四個 Property 項目。每一個屬性 (Property) 都有一個具有指派之資料型別的 Type 屬性 (Attribute)。例如,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>