Default 특성(EntityType CSDL)
EDM(엔터티 데이터 모델)에서 Property 요소의 Default 특성은 해당 형식의 인스턴스가 만들어질 때 속성에 할당되는 값을 지정합니다.
Department 엔터티의 다음 정의에는 4개의 Property 요소가 포함됩니다. 각 속성에는 할당된 데이터 형식을 사용하는 Type 특성이 있습니다. 예를 들어, GroupName 속성에는 Default 할당으로 "New Hire"가 포함됩니다.
<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" Default="New Hire" />
<Property Name="ModifiedDate" Type="DateTime" Nullable="false" />
</EntityType>