3.2 ValueTerm and Edm.TypeTerm
The following example shows a conceptual schema definition language (CSDL) where the ValueTerm and an entity type that is derived from Edm.TypeTerm that is used in the previous example is defined.
-
<Schema xmlns="http://schemas.microsoft.com/ado/2009/11/edm" Namespace="Model1" Alias="Self"> <ValueTerm Name="Title" Type="String" /> <EntityType Name="Person" BaseType="Edm.TypeTerm"> <Property Name="DisplayName" Type="String" Nullable="true" /> <Property Name="Email" Type="String" Nullable="true" /> <Property Name="AccountID" Type="Int32" Nullable="false" /> </EntityType> </Schema>