Documentation 요소(SSDL)
SSDL(저장소 스키마 정의 언어)의 Documentation 요소를 사용하면 부모 요소에 정의된 개체에 대한 정보를 제공할 수 있습니다.
Documentation 요소는 다음에 나열된 순서대로 자식 요소를 포함할 수 있습니다.
Summary: 부모 요소에 대한 간단한 설명입니다. (0개 또는 한 개의 요소)
LongDescription: 부모 요소에 대한 자세한 설명입니다. (0개 또는 한 개의 요소)
적용 가능한 특성
주석 특성(사용자 지정 XML 특성)을 원하는 수만큼 Documentation 요소에 적용할 수 있습니다. 그러나 사용자 지정 특성은 CSDL에 예약된 XML 네임스페이스에 속할 수 없습니다. 두 사용자 지정 특성의 정규화된 이름은 서로 같을 수 없습니다.
예제
다음 예제에서는 EntityType 요소의 자식 요소인 Documentation 요소를 보여 줍니다.
<EntityType Name="Customers">
<Documentation>
<Summary>Summary here.</Summary>
<LongDescription>Long description here.</LongDescription>
</Documentation>
<Key>
<PropertyRef Name="CustomerId" />
</Key>
<Property Name="CustomerId" Type="int" Nullable="false" />
<Property Name="Name" Type="nvarchar(max)" Nullable="false" />
</EntityType>