Model1.csdl 1003 B

123456789101112131415
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="UserKachaevModel" 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="Логин" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
  9. <Property Name="Пароли" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
  10. <Property Name="Role" Type="String" MaxLength="10" FixedLength="true" Unicode="true" />
  11. </EntityType>
  12. <EntityContainer Name="UserKachaevEntities" annotation:LazyLoadingEnabled="true">
  13. <EntitySet Name="User" EntityType="Self.User" />
  14. </EntityContainer>
  15. </Schema>