1234567891011121314151617 |
- <?xml version="1.0" encoding="utf-8"?>
- <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">
- <EntityType Name="User">
- <Key>
- <PropertyRef Name="id" />
- </Key>
- <Property Name="id" Type="int" Nullable="false" />
- <Property Name="Login" Type="char" MaxLength="10" />
- <Property Name="Password" Type="char" MaxLength="10" />
- <Property Name="Role" Type="char" MaxLength="10" />
- <Property Name="Name" Type="char" MaxLength="10" />
- <Property Name="Foto" Type="varbinary(max)" />
- </EntityType>
- <EntityContainer Name="Хранилище AuthorizationKomadinModel2Container">
- <EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
- </EntityContainer>
- </Schema>
|