Model1.ssdl 962 B

123456789101112131415
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="Хранилище UserKachaevModel" Provider="System.Data.SqlClient" ProviderManifestToken="2012" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
  3. <EntityType Name="User">
  4. <Key>
  5. <PropertyRef Name="ID" />
  6. </Key>
  7. <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  8. <Property Name="Логин" Type="nchar" MaxLength="10" />
  9. <Property Name="Пароли" Type="nchar" MaxLength="10" />
  10. <Property Name="Role" Type="nchar" MaxLength="10" />
  11. </EntityType>
  12. <EntityContainer Name="Хранилище UserKachaevModelContainer">
  13. <EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
  14. </EntityContainer>
  15. </Schema>