123456789101112131415161718 |
- <?xml version="1.0" encoding="utf-8"?>
- <Schema Namespace="Хранилище Model1" 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">
- <EntityType Name="Service">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="int" Nullable="false" />
- <Property Name="Title" Type="nvarchar" MaxLength="100" Nullable="false" />
- <Property Name="Cost" Type="money" Nullable="false" />
- <Property Name="DurationInSeconds" Type="int" Nullable="false" />
- <Property Name="Description" Type="nvarchar(max)" />
- <Property Name="Discount" Type="float" />
- <Property Name="MainImagePath" Type="nvarchar" MaxLength="1000" />
- </EntityType>
- <EntityContainer Name="Хранилище Model1Container">
- <EntitySet Name="Service" EntityType="Self.Service" Schema="dbo" store:Type="Tables" />
- </EntityContainer>
- </Schema>
|