Compartir a través de


Atributo Type (CSDL EntityType)

En Entity Data Model (EDM), el atributo Type de un elemento Property especifica el tipo de datos que se puede asignar a las instancias del tipo.

La definición siguiente de la entidad Department incluye cuatro elementos Property. Cada propiedad tiene un atributo Type que tiene un tipo de datos asignado. Por ejemplo, la asignación de la propiedad DepartmentID es Type="Int16". La propiedad DepartmentID también se designa como la propiedad Key de la entidad Department.

  <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>

Vea también

Conceptos

Atributo Key (CSDL EntityType)
Elemento EntityType (SSDL)