Model2.ssdl 1.0 KB

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="Хранилище AuthorizationKomadinModel2" Provider="System.Data.SqlClient" ProviderManifestToken="2008" 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" Nullable="false" />
  8. <Property Name="Login" Type="char" MaxLength="10" />
  9. <Property Name="Password" Type="char" MaxLength="10" />
  10. <Property Name="Role" Type="char" MaxLength="10" />
  11. <Property Name="Name" Type="char" MaxLength="10" />
  12. <Property Name="Foto" Type="varbinary(max)" />
  13. </EntityType>
  14. <EntityContainer Name="Хранилище AuthorizationKomadinModel2Container">
  15. <EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
  16. </EntityContainer>
  17. </Schema>