Model1.ssdl 1.1 KB

1234567891011121314151617
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Schema Namespace="Хранилище gr682_rdnModel" 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="Login" Type="nvarchar" MaxLength="50" Nullable="false" />
  9. <Property Name="Password" Type="nvarchar" MaxLength="50" Nullable="false" />
  10. <Property Name="LastName" Type="nvarchar" MaxLength="50" Nullable="false" />
  11. <Property Name="FirstName" Type="nvarchar" MaxLength="50" Nullable="false" />
  12. <Property Name="MiddleName" Type="nvarchar" MaxLength="50" />
  13. </EntityType>
  14. <EntityContainer Name="Хранилище gr682_rdnModelContainer">
  15. <EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
  16. </EntityContainer>
  17. </Schema>