Model1.csdl 1.2 KB

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="gr682_rdnModel" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
  3. <EntityType Name="User">
  4. <Key>
  5. <PropertyRef Name="Id" />
  6. </Key>
  7. <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  8. <Property Name="Login" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
  9. <Property Name="Password" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
  10. <Property Name="LastName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
  11. <Property Name="FirstName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
  12. <Property Name="MiddleName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
  13. </EntityType>
  14. <EntityContainer Name="gr682_rdnEntities" annotation:LazyLoadingEnabled="true">
  15. <EntitySet Name="User" EntityType="Self.User" />
  16. </EntityContainer>
  17. </Schema>