|
@@ -0,0 +1,821 @@
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
+<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
|
|
|
|
+ <!-- EF Runtime content -->
|
|
|
|
+ <edmx:Runtime>
|
|
|
|
+ <!-- SSDL content -->
|
|
|
|
+ <edmx:StorageModels>
|
|
|
|
+ <Schema Namespace="Хранилище Test02Model" 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="AttachedProduct">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="MainProductID" />
|
|
|
|
+ <PropertyRef Name="AttachedProductID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="MainProductID" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="AttachedProductID" Type="int" Nullable="false" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Client">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="FirstName" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
|
+ <Property Name="LastName" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
|
|
+ <Property Name="Patronymic" Type="nvarchar" MaxLength="50" />
|
|
|
|
+ <Property Name="Birthday" Type="date" />
|
|
|
|
+ <Property Name="RegistrationDate" Type="datetime" Nullable="false" />
|
|
|
|
+ <Property Name="Email" Type="nvarchar" MaxLength="255" />
|
|
|
|
+ <Property Name="Phone" Type="nvarchar" MaxLength="20" Nullable="false" />
|
|
|
|
+ <Property Name="GenderCode" Type="nchar" MaxLength="1" Nullable="false" />
|
|
|
|
+ <Property Name="PhotoPath" Type="nvarchar" MaxLength="1000" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="ClientService">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="ClientID" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="ServiceID" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="StartTime" Type="datetime" Nullable="false" />
|
|
|
|
+ <Property Name="Comment" Type="nvarchar(max)" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="DocumentByService">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="ClientServiceID" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="DocumentPath" Type="nvarchar" MaxLength="1000" Nullable="false" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Gender">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="Code" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="Code" Type="nchar" MaxLength="1" Nullable="false" />
|
|
|
|
+ <Property Name="Name" Type="nvarchar" MaxLength="10" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Manufacturer">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="Name" Type="nvarchar" MaxLength="100" Nullable="false" />
|
|
|
|
+ <Property Name="StartDate" Type="date" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Product">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="Title" Type="nvarchar" MaxLength="100" Nullable="false" />
|
|
|
|
+ <Property Name="Cost" Type="money" Nullable="false" />
|
|
|
|
+ <Property Name="Description" Type="nvarchar(max)" />
|
|
|
|
+ <Property Name="MainImagePath" Type="nvarchar" MaxLength="1000" />
|
|
|
|
+ <Property Name="IsActive" Type="bit" Nullable="false" />
|
|
|
|
+ <Property Name="ManufacturerID" Type="int" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="ProductPhoto">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="ProductID" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="PhotoPath" Type="nvarchar" MaxLength="1000" Nullable="false" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="ProductSale">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="SaleDate" Type="datetime" Nullable="false" />
|
|
|
|
+ <Property Name="ProductID" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="Quantity" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="ClientServiceID" Type="int" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Service">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" 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>
|
|
|
|
+ <EntityType Name="ServicePhoto">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="ServiceID" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="PhotoPath" Type="nvarchar" MaxLength="1000" Nullable="false" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Tag">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
|
|
+ <Property Name="Title" Type="nvarchar" MaxLength="30" Nullable="false" />
|
|
|
|
+ <Property Name="Color" Type="nchar" MaxLength="6" Nullable="false" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="TagOfClient">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ClientID" />
|
|
|
|
+ <PropertyRef Name="TagID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ClientID" Type="int" Nullable="false" />
|
|
|
|
+ <Property Name="TagID" Type="int" Nullable="false" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <Association Name="FK_AttachedProduct_Product">
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="1" />
|
|
|
|
+ <End Role="AttachedProduct" Type="Self.AttachedProduct" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Product">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="AttachedProduct">
|
|
|
|
+ <PropertyRef Name="MainProductID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_AttachedProduct_Product1">
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="1" />
|
|
|
|
+ <End Role="AttachedProduct" Type="Self.AttachedProduct" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Product">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="AttachedProduct">
|
|
|
|
+ <PropertyRef Name="AttachedProductID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_Client_Gender">
|
|
|
|
+ <End Role="Gender" Type="Self.Gender" Multiplicity="1" />
|
|
|
|
+ <End Role="Client" Type="Self.Client" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Gender">
|
|
|
|
+ <PropertyRef Name="Code" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="Client">
|
|
|
|
+ <PropertyRef Name="GenderCode" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ClientService_Client">
|
|
|
|
+ <End Role="Client" Type="Self.Client" Multiplicity="1" />
|
|
|
|
+ <End Role="ClientService" Type="Self.ClientService" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Client">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ClientService">
|
|
|
|
+ <PropertyRef Name="ClientID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ClientService_Service">
|
|
|
|
+ <End Role="Service" Type="Self.Service" Multiplicity="1" />
|
|
|
|
+ <End Role="ClientService" Type="Self.ClientService" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Service">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ClientService">
|
|
|
|
+ <PropertyRef Name="ServiceID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_DocumentByService_ClientService">
|
|
|
|
+ <End Role="ClientService" Type="Self.ClientService" Multiplicity="1" />
|
|
|
|
+ <End Role="DocumentByService" Type="Self.DocumentByService" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="ClientService">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="DocumentByService">
|
|
|
|
+ <PropertyRef Name="ClientServiceID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_Product_Manufacturer">
|
|
|
|
+ <End Role="Manufacturer" Type="Self.Manufacturer" Multiplicity="0..1" />
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Manufacturer">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="Product">
|
|
|
|
+ <PropertyRef Name="ManufacturerID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ProductPhoto_Product">
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="1" />
|
|
|
|
+ <End Role="ProductPhoto" Type="Self.ProductPhoto" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Product">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ProductPhoto">
|
|
|
|
+ <PropertyRef Name="ProductID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ProductSale_ClientService">
|
|
|
|
+ <End Role="ClientService" Type="Self.ClientService" Multiplicity="0..1" />
|
|
|
|
+ <End Role="ProductSale" Type="Self.ProductSale" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="ClientService">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ProductSale">
|
|
|
|
+ <PropertyRef Name="ClientServiceID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ProductSale_Product">
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="1" />
|
|
|
|
+ <End Role="ProductSale" Type="Self.ProductSale" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Product">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ProductSale">
|
|
|
|
+ <PropertyRef Name="ProductID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ServicePhoto_Service">
|
|
|
|
+ <End Role="Service" Type="Self.Service" Multiplicity="1" />
|
|
|
|
+ <End Role="ServicePhoto" Type="Self.ServicePhoto" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Service">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ServicePhoto">
|
|
|
|
+ <PropertyRef Name="ServiceID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_TagOfClient_Client">
|
|
|
|
+ <End Role="Client" Type="Self.Client" Multiplicity="1" />
|
|
|
|
+ <End Role="TagOfClient" Type="Self.TagOfClient" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Client">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="TagOfClient">
|
|
|
|
+ <PropertyRef Name="ClientID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_TagOfClient_Tag">
|
|
|
|
+ <End Role="Tag" Type="Self.Tag" Multiplicity="1" />
|
|
|
|
+ <End Role="TagOfClient" Type="Self.TagOfClient" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Tag">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="TagOfClient">
|
|
|
|
+ <PropertyRef Name="TagID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <EntityContainer Name="Хранилище Test02ModelContainer">
|
|
|
|
+ <EntitySet Name="AttachedProduct" EntityType="Self.AttachedProduct" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="Client" EntityType="Self.Client" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="ClientService" EntityType="Self.ClientService" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="DocumentByService" EntityType="Self.DocumentByService" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="Gender" EntityType="Self.Gender" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="Manufacturer" EntityType="Self.Manufacturer" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="Product" EntityType="Self.Product" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="ProductPhoto" EntityType="Self.ProductPhoto" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="ProductSale" EntityType="Self.ProductSale" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="Service" EntityType="Self.Service" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="ServicePhoto" EntityType="Self.ServicePhoto" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="Tag" EntityType="Self.Tag" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <EntitySet Name="TagOfClient" EntityType="Self.TagOfClient" Schema="dbo" store:Type="Tables" />
|
|
|
|
+ <AssociationSet Name="FK_AttachedProduct_Product" Association="Self.FK_AttachedProduct_Product">
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ <End Role="AttachedProduct" EntitySet="AttachedProduct" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_AttachedProduct_Product1" Association="Self.FK_AttachedProduct_Product1">
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ <End Role="AttachedProduct" EntitySet="AttachedProduct" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_Client_Gender" Association="Self.FK_Client_Gender">
|
|
|
|
+ <End Role="Gender" EntitySet="Gender" />
|
|
|
|
+ <End Role="Client" EntitySet="Client" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ClientService_Client" Association="Self.FK_ClientService_Client">
|
|
|
|
+ <End Role="Client" EntitySet="Client" />
|
|
|
|
+ <End Role="ClientService" EntitySet="ClientService" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ClientService_Service" Association="Self.FK_ClientService_Service">
|
|
|
|
+ <End Role="Service" EntitySet="Service" />
|
|
|
|
+ <End Role="ClientService" EntitySet="ClientService" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_DocumentByService_ClientService" Association="Self.FK_DocumentByService_ClientService">
|
|
|
|
+ <End Role="ClientService" EntitySet="ClientService" />
|
|
|
|
+ <End Role="DocumentByService" EntitySet="DocumentByService" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_Product_Manufacturer" Association="Self.FK_Product_Manufacturer">
|
|
|
|
+ <End Role="Manufacturer" EntitySet="Manufacturer" />
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ProductPhoto_Product" Association="Self.FK_ProductPhoto_Product">
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ <End Role="ProductPhoto" EntitySet="ProductPhoto" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ProductSale_ClientService" Association="Self.FK_ProductSale_ClientService">
|
|
|
|
+ <End Role="ClientService" EntitySet="ClientService" />
|
|
|
|
+ <End Role="ProductSale" EntitySet="ProductSale" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ProductSale_Product" Association="Self.FK_ProductSale_Product">
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ <End Role="ProductSale" EntitySet="ProductSale" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ServicePhoto_Service" Association="Self.FK_ServicePhoto_Service">
|
|
|
|
+ <End Role="Service" EntitySet="Service" />
|
|
|
|
+ <End Role="ServicePhoto" EntitySet="ServicePhoto" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_TagOfClient_Client" Association="Self.FK_TagOfClient_Client">
|
|
|
|
+ <End Role="Client" EntitySet="Client" />
|
|
|
|
+ <End Role="TagOfClient" EntitySet="TagOfClient" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_TagOfClient_Tag" Association="Self.FK_TagOfClient_Tag">
|
|
|
|
+ <End Role="Tag" EntitySet="Tag" />
|
|
|
|
+ <End Role="TagOfClient" EntitySet="TagOfClient" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ </EntityContainer>
|
|
|
|
+ </Schema>
|
|
|
|
+ </edmx:StorageModels>
|
|
|
|
+ <!-- CSDL content -->
|
|
|
|
+ <edmx:ConceptualModels>
|
|
|
|
+ <Schema Namespace="Test02Model" Alias="Self" annotation:UseStrongSpatialTypes="false" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
|
|
|
|
+ <EntityType Name="Client">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="FirstName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="LastName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="Patronymic" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
|
|
|
|
+ <Property Name="Birthday" Type="DateTime" Precision="0" />
|
|
|
|
+ <Property Name="RegistrationDate" Type="DateTime" Nullable="false" Precision="3" />
|
|
|
|
+ <Property Name="Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
|
|
|
|
+ <Property Name="Phone" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="GenderCode" Type="String" MaxLength="1" FixedLength="true" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="PhotoPath" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
|
|
|
|
+ <NavigationProperty Name="Gender" Relationship="Self.FK_Client_Gender" FromRole="Client" ToRole="Gender" />
|
|
|
|
+ <NavigationProperty Name="ClientService" Relationship="Self.FK_ClientService_Client" FromRole="Client" ToRole="ClientService" />
|
|
|
|
+ <NavigationProperty Name="Tag" Relationship="Self.TagOfClient" FromRole="Client" ToRole="Tag" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="ClientService">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="ClientID" Type="Int32" Nullable="false" />
|
|
|
|
+ <Property Name="ServiceID" Type="Int32" Nullable="false" />
|
|
|
|
+ <Property Name="StartTime" Type="DateTime" Nullable="false" Precision="3" />
|
|
|
|
+ <Property Name="Comment" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
|
|
|
|
+ <NavigationProperty Name="Client" Relationship="Self.FK_ClientService_Client" FromRole="ClientService" ToRole="Client" />
|
|
|
|
+ <NavigationProperty Name="Service" Relationship="Self.FK_ClientService_Service" FromRole="ClientService" ToRole="Service" />
|
|
|
|
+ <NavigationProperty Name="DocumentByService" Relationship="Self.FK_DocumentByService_ClientService" FromRole="ClientService" ToRole="DocumentByService" />
|
|
|
|
+ <NavigationProperty Name="ProductSale" Relationship="Self.FK_ProductSale_ClientService" FromRole="ClientService" ToRole="ProductSale" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="DocumentByService">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="ClientServiceID" Type="Int32" Nullable="false" />
|
|
|
|
+ <Property Name="DocumentPath" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <NavigationProperty Name="ClientService" Relationship="Self.FK_DocumentByService_ClientService" FromRole="DocumentByService" ToRole="ClientService" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Gender">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="Code" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="Code" Type="String" MaxLength="1" FixedLength="true" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="Name" Type="String" MaxLength="10" FixedLength="false" Unicode="true" />
|
|
|
|
+ <NavigationProperty Name="Client" Relationship="Self.FK_Client_Gender" FromRole="Gender" ToRole="Client" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Manufacturer">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="Name" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="StartDate" Type="DateTime" Precision="0" />
|
|
|
|
+ <NavigationProperty Name="Product" Relationship="Self.FK_Product_Manufacturer" FromRole="Manufacturer" ToRole="Product" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Product">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="Title" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="Cost" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
|
|
|
|
+ <Property Name="Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
|
|
|
|
+ <Property Name="MainImagePath" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
|
|
|
|
+ <Property Name="IsActive" Type="Boolean" Nullable="false" />
|
|
|
|
+ <Property Name="ManufacturerID" Type="Int32" />
|
|
|
|
+ <NavigationProperty Name="Manufacturer" Relationship="Self.FK_Product_Manufacturer" FromRole="Product" ToRole="Manufacturer" />
|
|
|
|
+ <NavigationProperty Name="ProductPhoto" Relationship="Self.FK_ProductPhoto_Product" FromRole="Product" ToRole="ProductPhoto" />
|
|
|
|
+ <NavigationProperty Name="ProductSale" Relationship="Self.FK_ProductSale_Product" FromRole="Product" ToRole="ProductSale" />
|
|
|
|
+ <NavigationProperty Name="Product1" Relationship="Self.AttachedProduct" FromRole="Product" ToRole="Product1" />
|
|
|
|
+ <NavigationProperty Name="Product2" Relationship="Self.AttachedProduct" FromRole="Product1" ToRole="Product" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="ProductPhoto">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="ProductID" Type="Int32" Nullable="false" />
|
|
|
|
+ <Property Name="PhotoPath" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <NavigationProperty Name="Product" Relationship="Self.FK_ProductPhoto_Product" FromRole="ProductPhoto" ToRole="Product" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="ProductSale">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="SaleDate" Type="DateTime" Nullable="false" Precision="3" />
|
|
|
|
+ <Property Name="ProductID" Type="Int32" Nullable="false" />
|
|
|
|
+ <Property Name="Quantity" Type="Int32" Nullable="false" />
|
|
|
|
+ <Property Name="ClientServiceID" Type="Int32" />
|
|
|
|
+ <NavigationProperty Name="ClientService" Relationship="Self.FK_ProductSale_ClientService" FromRole="ProductSale" ToRole="ClientService" />
|
|
|
|
+ <NavigationProperty Name="Product" Relationship="Self.FK_ProductSale_Product" FromRole="ProductSale" ToRole="Product" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Service">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="Title" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="Cost" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
|
|
|
|
+ <Property Name="DurationInSeconds" Type="Int32" Nullable="false" />
|
|
|
|
+ <Property Name="Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
|
|
|
|
+ <Property Name="Discount" Type="Double" />
|
|
|
|
+ <Property Name="MainImagePath" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" />
|
|
|
|
+ <NavigationProperty Name="ClientService" Relationship="Self.FK_ClientService_Service" FromRole="Service" ToRole="ClientService" />
|
|
|
|
+ <NavigationProperty Name="ServicePhoto" Relationship="Self.FK_ServicePhoto_Service" FromRole="Service" ToRole="ServicePhoto" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="ServicePhoto">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="ServiceID" Type="Int32" Nullable="false" />
|
|
|
|
+ <Property Name="PhotoPath" Type="String" MaxLength="1000" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <NavigationProperty Name="Service" Relationship="Self.FK_ServicePhoto_Service" FromRole="ServicePhoto" ToRole="Service" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <EntityType Name="Tag">
|
|
|
|
+ <Key>
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Key>
|
|
|
|
+ <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
|
|
+ <Property Name="Title" Type="String" MaxLength="30" FixedLength="false" Unicode="true" Nullable="false" />
|
|
|
|
+ <Property Name="Color" Type="String" MaxLength="6" FixedLength="true" Unicode="true" Nullable="false" />
|
|
|
|
+ <NavigationProperty Name="Client" Relationship="Self.TagOfClient" FromRole="Tag" ToRole="Client" />
|
|
|
|
+ </EntityType>
|
|
|
|
+ <Association Name="FK_Client_Gender">
|
|
|
|
+ <End Role="Gender" Type="Self.Gender" Multiplicity="1" />
|
|
|
|
+ <End Role="Client" Type="Self.Client" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Gender">
|
|
|
|
+ <PropertyRef Name="Code" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="Client">
|
|
|
|
+ <PropertyRef Name="GenderCode" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ClientService_Client">
|
|
|
|
+ <End Role="Client" Type="Self.Client" Multiplicity="1" />
|
|
|
|
+ <End Role="ClientService" Type="Self.ClientService" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Client">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ClientService">
|
|
|
|
+ <PropertyRef Name="ClientID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ClientService_Service">
|
|
|
|
+ <End Role="Service" Type="Self.Service" Multiplicity="1" />
|
|
|
|
+ <End Role="ClientService" Type="Self.ClientService" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Service">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ClientService">
|
|
|
|
+ <PropertyRef Name="ServiceID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_DocumentByService_ClientService">
|
|
|
|
+ <End Role="ClientService" Type="Self.ClientService" Multiplicity="1" />
|
|
|
|
+ <End Role="DocumentByService" Type="Self.DocumentByService" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="ClientService">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="DocumentByService">
|
|
|
|
+ <PropertyRef Name="ClientServiceID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ProductSale_ClientService">
|
|
|
|
+ <End Role="ClientService" Type="Self.ClientService" Multiplicity="0..1" />
|
|
|
|
+ <End Role="ProductSale" Type="Self.ProductSale" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="ClientService">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ProductSale">
|
|
|
|
+ <PropertyRef Name="ClientServiceID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_Product_Manufacturer">
|
|
|
|
+ <End Role="Manufacturer" Type="Self.Manufacturer" Multiplicity="0..1" />
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Manufacturer">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="Product">
|
|
|
|
+ <PropertyRef Name="ManufacturerID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ProductPhoto_Product">
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="1" />
|
|
|
|
+ <End Role="ProductPhoto" Type="Self.ProductPhoto" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Product">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ProductPhoto">
|
|
|
|
+ <PropertyRef Name="ProductID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ProductSale_Product">
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="1" />
|
|
|
|
+ <End Role="ProductSale" Type="Self.ProductSale" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Product">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ProductSale">
|
|
|
|
+ <PropertyRef Name="ProductID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="FK_ServicePhoto_Service">
|
|
|
|
+ <End Role="Service" Type="Self.Service" Multiplicity="1" />
|
|
|
|
+ <End Role="ServicePhoto" Type="Self.ServicePhoto" Multiplicity="*" />
|
|
|
|
+ <ReferentialConstraint>
|
|
|
|
+ <Principal Role="Service">
|
|
|
|
+ <PropertyRef Name="ID" />
|
|
|
|
+ </Principal>
|
|
|
|
+ <Dependent Role="ServicePhoto">
|
|
|
|
+ <PropertyRef Name="ServiceID" />
|
|
|
|
+ </Dependent>
|
|
|
|
+ </ReferentialConstraint>
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="AttachedProduct">
|
|
|
|
+ <End Role="Product" Type="Self.Product" Multiplicity="*" />
|
|
|
|
+ <End Role="Product1" Type="Self.Product" Multiplicity="*" />
|
|
|
|
+ </Association>
|
|
|
|
+ <Association Name="TagOfClient">
|
|
|
|
+ <End Role="Client" Type="Self.Client" Multiplicity="*" />
|
|
|
|
+ <End Role="Tag" Type="Self.Tag" Multiplicity="*" />
|
|
|
|
+ </Association>
|
|
|
|
+ <EntityContainer Name="Test02Entities" annotation:LazyLoadingEnabled="true">
|
|
|
|
+ <EntitySet Name="Client" EntityType="Self.Client" />
|
|
|
|
+ <EntitySet Name="ClientService" EntityType="Self.ClientService" />
|
|
|
|
+ <EntitySet Name="DocumentByService" EntityType="Self.DocumentByService" />
|
|
|
|
+ <EntitySet Name="Gender" EntityType="Self.Gender" />
|
|
|
|
+ <EntitySet Name="Manufacturer" EntityType="Self.Manufacturer" />
|
|
|
|
+ <EntitySet Name="Product" EntityType="Self.Product" />
|
|
|
|
+ <EntitySet Name="ProductPhoto" EntityType="Self.ProductPhoto" />
|
|
|
|
+ <EntitySet Name="ProductSale" EntityType="Self.ProductSale" />
|
|
|
|
+ <EntitySet Name="Service" EntityType="Self.Service" />
|
|
|
|
+ <EntitySet Name="ServicePhoto" EntityType="Self.ServicePhoto" />
|
|
|
|
+ <EntitySet Name="Tag" EntityType="Self.Tag" />
|
|
|
|
+ <AssociationSet Name="FK_Client_Gender" Association="Self.FK_Client_Gender">
|
|
|
|
+ <End Role="Gender" EntitySet="Gender" />
|
|
|
|
+ <End Role="Client" EntitySet="Client" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ClientService_Client" Association="Self.FK_ClientService_Client">
|
|
|
|
+ <End Role="Client" EntitySet="Client" />
|
|
|
|
+ <End Role="ClientService" EntitySet="ClientService" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ClientService_Service" Association="Self.FK_ClientService_Service">
|
|
|
|
+ <End Role="Service" EntitySet="Service" />
|
|
|
|
+ <End Role="ClientService" EntitySet="ClientService" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_DocumentByService_ClientService" Association="Self.FK_DocumentByService_ClientService">
|
|
|
|
+ <End Role="ClientService" EntitySet="ClientService" />
|
|
|
|
+ <End Role="DocumentByService" EntitySet="DocumentByService" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ProductSale_ClientService" Association="Self.FK_ProductSale_ClientService">
|
|
|
|
+ <End Role="ClientService" EntitySet="ClientService" />
|
|
|
|
+ <End Role="ProductSale" EntitySet="ProductSale" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_Product_Manufacturer" Association="Self.FK_Product_Manufacturer">
|
|
|
|
+ <End Role="Manufacturer" EntitySet="Manufacturer" />
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ProductPhoto_Product" Association="Self.FK_ProductPhoto_Product">
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ <End Role="ProductPhoto" EntitySet="ProductPhoto" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ProductSale_Product" Association="Self.FK_ProductSale_Product">
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ <End Role="ProductSale" EntitySet="ProductSale" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="FK_ServicePhoto_Service" Association="Self.FK_ServicePhoto_Service">
|
|
|
|
+ <End Role="Service" EntitySet="Service" />
|
|
|
|
+ <End Role="ServicePhoto" EntitySet="ServicePhoto" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="AttachedProduct" Association="Self.AttachedProduct">
|
|
|
|
+ <End Role="Product" EntitySet="Product" />
|
|
|
|
+ <End Role="Product1" EntitySet="Product" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ <AssociationSet Name="TagOfClient" Association="Self.TagOfClient">
|
|
|
|
+ <End Role="Client" EntitySet="Client" />
|
|
|
|
+ <End Role="Tag" EntitySet="Tag" />
|
|
|
|
+ </AssociationSet>
|
|
|
|
+ </EntityContainer>
|
|
|
|
+ </Schema>
|
|
|
|
+ </edmx:ConceptualModels>
|
|
|
|
+ <!-- C-S mapping content -->
|
|
|
|
+ <edmx:Mappings>
|
|
|
|
+ <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
|
|
|
|
+ <EntityContainerMapping StorageEntityContainer="Хранилище Test02ModelContainer" CdmEntityContainer="Test02Entities">
|
|
|
|
+ <EntitySetMapping Name="Client">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.Client">
|
|
|
|
+ <MappingFragment StoreEntitySet="Client">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="FirstName" ColumnName="FirstName" />
|
|
|
|
+ <ScalarProperty Name="LastName" ColumnName="LastName" />
|
|
|
|
+ <ScalarProperty Name="Patronymic" ColumnName="Patronymic" />
|
|
|
|
+ <ScalarProperty Name="Birthday" ColumnName="Birthday" />
|
|
|
|
+ <ScalarProperty Name="RegistrationDate" ColumnName="RegistrationDate" />
|
|
|
|
+ <ScalarProperty Name="Email" ColumnName="Email" />
|
|
|
|
+ <ScalarProperty Name="Phone" ColumnName="Phone" />
|
|
|
|
+ <ScalarProperty Name="GenderCode" ColumnName="GenderCode" />
|
|
|
|
+ <ScalarProperty Name="PhotoPath" ColumnName="PhotoPath" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="ClientService">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.ClientService">
|
|
|
|
+ <MappingFragment StoreEntitySet="ClientService">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="ClientID" ColumnName="ClientID" />
|
|
|
|
+ <ScalarProperty Name="ServiceID" ColumnName="ServiceID" />
|
|
|
|
+ <ScalarProperty Name="StartTime" ColumnName="StartTime" />
|
|
|
|
+ <ScalarProperty Name="Comment" ColumnName="Comment" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="DocumentByService">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.DocumentByService">
|
|
|
|
+ <MappingFragment StoreEntitySet="DocumentByService">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="ClientServiceID" ColumnName="ClientServiceID" />
|
|
|
|
+ <ScalarProperty Name="DocumentPath" ColumnName="DocumentPath" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="Gender">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.Gender">
|
|
|
|
+ <MappingFragment StoreEntitySet="Gender">
|
|
|
|
+ <ScalarProperty Name="Code" ColumnName="Code" />
|
|
|
|
+ <ScalarProperty Name="Name" ColumnName="Name" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="Manufacturer">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.Manufacturer">
|
|
|
|
+ <MappingFragment StoreEntitySet="Manufacturer">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="Name" ColumnName="Name" />
|
|
|
|
+ <ScalarProperty Name="StartDate" ColumnName="StartDate" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="Product">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.Product">
|
|
|
|
+ <MappingFragment StoreEntitySet="Product">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="Title" ColumnName="Title" />
|
|
|
|
+ <ScalarProperty Name="Cost" ColumnName="Cost" />
|
|
|
|
+ <ScalarProperty Name="Description" ColumnName="Description" />
|
|
|
|
+ <ScalarProperty Name="MainImagePath" ColumnName="MainImagePath" />
|
|
|
|
+ <ScalarProperty Name="IsActive" ColumnName="IsActive" />
|
|
|
|
+ <ScalarProperty Name="ManufacturerID" ColumnName="ManufacturerID" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="ProductPhoto">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.ProductPhoto">
|
|
|
|
+ <MappingFragment StoreEntitySet="ProductPhoto">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="ProductID" ColumnName="ProductID" />
|
|
|
|
+ <ScalarProperty Name="PhotoPath" ColumnName="PhotoPath" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="ProductSale">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.ProductSale">
|
|
|
|
+ <MappingFragment StoreEntitySet="ProductSale">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="SaleDate" ColumnName="SaleDate" />
|
|
|
|
+ <ScalarProperty Name="ProductID" ColumnName="ProductID" />
|
|
|
|
+ <ScalarProperty Name="Quantity" ColumnName="Quantity" />
|
|
|
|
+ <ScalarProperty Name="ClientServiceID" ColumnName="ClientServiceID" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="Service">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.Service">
|
|
|
|
+ <MappingFragment StoreEntitySet="Service">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="Title" ColumnName="Title" />
|
|
|
|
+ <ScalarProperty Name="Cost" ColumnName="Cost" />
|
|
|
|
+ <ScalarProperty Name="DurationInSeconds" ColumnName="DurationInSeconds" />
|
|
|
|
+ <ScalarProperty Name="Description" ColumnName="Description" />
|
|
|
|
+ <ScalarProperty Name="Discount" ColumnName="Discount" />
|
|
|
|
+ <ScalarProperty Name="MainImagePath" ColumnName="MainImagePath" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="ServicePhoto">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.ServicePhoto">
|
|
|
|
+ <MappingFragment StoreEntitySet="ServicePhoto">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="ServiceID" ColumnName="ServiceID" />
|
|
|
|
+ <ScalarProperty Name="PhotoPath" ColumnName="PhotoPath" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <EntitySetMapping Name="Tag">
|
|
|
|
+ <EntityTypeMapping TypeName="Test02Model.Tag">
|
|
|
|
+ <MappingFragment StoreEntitySet="Tag">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ID" />
|
|
|
|
+ <ScalarProperty Name="Title" ColumnName="Title" />
|
|
|
|
+ <ScalarProperty Name="Color" ColumnName="Color" />
|
|
|
|
+ </MappingFragment>
|
|
|
|
+ </EntityTypeMapping>
|
|
|
|
+ </EntitySetMapping>
|
|
|
|
+ <AssociationSetMapping Name="AttachedProduct" TypeName="Test02Model.AttachedProduct" StoreEntitySet="AttachedProduct">
|
|
|
|
+ <EndProperty Name="Product">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="MainProductID" />
|
|
|
|
+ </EndProperty>
|
|
|
|
+ <EndProperty Name="Product1">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="AttachedProductID" />
|
|
|
|
+ </EndProperty>
|
|
|
|
+ </AssociationSetMapping>
|
|
|
|
+ <AssociationSetMapping Name="TagOfClient" TypeName="Test02Model.TagOfClient" StoreEntitySet="TagOfClient">
|
|
|
|
+ <EndProperty Name="Client">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="ClientID" />
|
|
|
|
+ </EndProperty>
|
|
|
|
+ <EndProperty Name="Tag">
|
|
|
|
+ <ScalarProperty Name="ID" ColumnName="TagID" />
|
|
|
|
+ </EndProperty>
|
|
|
|
+ </AssociationSetMapping>
|
|
|
|
+ </EntityContainerMapping>
|
|
|
|
+ </Mapping>
|
|
|
|
+ </edmx:Mappings>
|
|
|
|
+ </edmx:Runtime>
|
|
|
|
+ <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
|
|
|
|
+ <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
|
|
|
|
+ <Connection>
|
|
|
|
+ <DesignerInfoPropertySet>
|
|
|
|
+ <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
|
|
|
|
+ </DesignerInfoPropertySet>
|
|
|
|
+ </Connection>
|
|
|
|
+ <Options>
|
|
|
|
+ <DesignerInfoPropertySet>
|
|
|
|
+ <DesignerProperty Name="ValidateOnBuild" Value="true" />
|
|
|
|
+ <DesignerProperty Name="EnablePluralization" Value="false" />
|
|
|
|
+ <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
|
|
|
|
+ <DesignerProperty Name="UseLegacyProvider" Value="false" />
|
|
|
|
+ <DesignerProperty Name="CodeGenerationStrategy" Value="Нет" />
|
|
|
|
+ </DesignerInfoPropertySet>
|
|
|
|
+ </Options>
|
|
|
|
+ <!-- Diagram content (shape and connector positions) -->
|
|
|
|
+ <Diagrams></Diagrams>
|
|
|
|
+ </Designer>
|
|
|
|
+</edmx:Edmx>
|