123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650 |
- <?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="Хранилище UP_ShechkovaModel" 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="Manufacturer">
- <Key>
- <PropertyRef Name="ManufacturerId" />
- </Key>
- <Property Name="ManufacturerId" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="Manufacturer" Type="nvarchar(max)" Nullable="false" />
- </EntityType>
- <EntityType Name="Order">
- <Key>
- <PropertyRef Name="OrderID" />
- </Key>
- <Property Name="OrderID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="OrderStatus" Type="int" Nullable="false" />
- <Property Name="OrderDate" Type="datetime" Nullable="false" />
- <Property Name="OrderDeliveryDate" Type="datetime" />
- <Property Name="OrderPickupPoint" Type="int" Nullable="false" />
- <Property Name="UserID" Type="int" />
- <Property Name="IssueCode" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="OrderProduct">
- <Key>
- <PropertyRef Name="OrderID" />
- <PropertyRef Name="ProductArticleNumber" />
- </Key>
- <Property Name="OrderID" Type="int" Nullable="false" />
- <Property Name="ProductArticleNumber" Type="nvarchar" MaxLength="100" Nullable="false" />
- <Property Name="ProductCount" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="PointsOfIssue">
- <Key>
- <PropertyRef Name="PointID" />
- </Key>
- <Property Name="PointID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="PointName" Type="nvarchar(max)" Nullable="false" />
- </EntityType>
- <EntityType Name="Product">
- <Key>
- <PropertyRef Name="ProductArticleNumber" />
- </Key>
- <Property Name="ProductArticleNumber" Type="nvarchar" MaxLength="100" Nullable="false" />
- <Property Name="ProductName" Type="nvarchar(max)" Nullable="false" />
- <Property Name="ProductDescription" Type="nvarchar(max)" Nullable="false" />
- <Property Name="ProductCategory" Type="int" Nullable="false" />
- <Property Name="ProductPhoto" Type="nvarchar(max)" />
- <Property Name="ProductManufacturer" Type="int" Nullable="false" />
- <Property Name="ProductProvider" Type="int" Nullable="false" />
- <Property Name="ProductCost" Type="decimal" Precision="19" Scale="4" Nullable="false" />
- <Property Name="ProductDiscountAmount" Type="tinyint" />
- <Property Name="ProductQuantityInStock" Type="int" />
- </EntityType>
- <EntityType Name="ProductCategory">
- <Key>
- <PropertyRef Name="CategoryId" />
- </Key>
- <Property Name="CategoryId" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="CategoryTitle" Type="nvarchar(max)" Nullable="false" />
- </EntityType>
- <EntityType Name="Provider">
- <Key>
- <PropertyRef Name="ProviderId" />
- </Key>
- <Property Name="ProviderId" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="Provider" Type="nvarchar(max)" Nullable="false" />
- </EntityType>
- <EntityType Name="Role">
- <Key>
- <PropertyRef Name="RoleID" />
- </Key>
- <Property Name="RoleID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="RoleName" Type="nvarchar" MaxLength="100" Nullable="false" />
- </EntityType>
- <EntityType Name="StatusOrder">
- <Key>
- <PropertyRef Name="StatusId" />
- </Key>
- <Property Name="StatusId" Type="int" Nullable="false" />
- <Property Name="StatusTitle" Type="nvarchar" MaxLength="50" Nullable="false" />
- </EntityType>
- <EntityType Name="User">
- <Key>
- <PropertyRef Name="UserID" />
- </Key>
- <Property Name="UserID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="UserSurname" Type="nvarchar" MaxLength="100" Nullable="false" />
- <Property Name="UserName" Type="nvarchar" MaxLength="100" Nullable="false" />
- <Property Name="UserPatronymic" Type="nvarchar" MaxLength="100" />
- <Property Name="UserLogin" Type="nvarchar(max)" Nullable="false" />
- <Property Name="UserPassword" Type="nvarchar(max)" Nullable="false" />
- <Property Name="UserRole" Type="int" Nullable="false" />
- </EntityType>
- <Association Name="FK__OrderProd__Order__1CBC4616">
- <End Role="Order" Type="Self.Order" Multiplicity="1" />
- <End Role="OrderProduct" Type="Self.OrderProduct" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Order">
- <PropertyRef Name="OrderID" />
- </Principal>
- <Dependent Role="OrderProduct">
- <PropertyRef Name="OrderID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__OrderProd__Produ__1DB06A4F">
- <End Role="Product" Type="Self.Product" Multiplicity="1" />
- <End Role="OrderProduct" Type="Self.OrderProduct" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Product">
- <PropertyRef Name="ProductArticleNumber" />
- </Principal>
- <Dependent Role="OrderProduct">
- <PropertyRef Name="ProductArticleNumber" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__User__UserRole__398D8EEE">
- <End Role="Role" Type="Self.Role" Multiplicity="1" />
- <End Role="User" Type="Self.User" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Role">
- <PropertyRef Name="RoleID" />
- </Principal>
- <Dependent Role="User">
- <PropertyRef Name="UserRole" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Order_PointsOfIssue">
- <End Role="PointsOfIssue" Type="Self.PointsOfIssue" Multiplicity="1" />
- <End Role="Order" Type="Self.Order" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="PointsOfIssue">
- <PropertyRef Name="PointID" />
- </Principal>
- <Dependent Role="Order">
- <PropertyRef Name="OrderPickupPoint" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Order_StateOrder">
- <End Role="StatusOrder" Type="Self.StatusOrder" Multiplicity="1" />
- <End Role="Order" Type="Self.Order" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="StatusOrder">
- <PropertyRef Name="StatusId" />
- </Principal>
- <Dependent Role="Order">
- <PropertyRef Name="OrderStatus" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Order_User">
- <End Role="User" Type="Self.User" Multiplicity="0..1" />
- <End Role="Order" Type="Self.Order" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="User">
- <PropertyRef Name="UserID" />
- </Principal>
- <Dependent Role="Order">
- <PropertyRef Name="UserID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Product_Manufacturer">
- <End Role="Manufacturer" Type="Self.Manufacturer" Multiplicity="1" />
- <End Role="Product" Type="Self.Product" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Manufacturer">
- <PropertyRef Name="ManufacturerId" />
- </Principal>
- <Dependent Role="Product">
- <PropertyRef Name="ProductManufacturer" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Product_ProductCategory">
- <End Role="ProductCategory" Type="Self.ProductCategory" Multiplicity="1" />
- <End Role="Product" Type="Self.Product" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="ProductCategory">
- <PropertyRef Name="CategoryId" />
- </Principal>
- <Dependent Role="Product">
- <PropertyRef Name="ProductProvider" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Product_Provider">
- <End Role="Provider" Type="Self.Provider" Multiplicity="1" />
- <End Role="Product" Type="Self.Product" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Provider">
- <PropertyRef Name="ProviderId" />
- </Principal>
- <Dependent Role="Product">
- <PropertyRef Name="ProductProvider" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="Хранилище UP_ShechkovaModelContainer">
- <EntitySet Name="Manufacturer" EntityType="Self.Manufacturer" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Order" EntityType="Self.Order" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="OrderProduct" EntityType="Self.OrderProduct" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="PointsOfIssue" EntityType="Self.PointsOfIssue" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Product" EntityType="Self.Product" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="ProductCategory" EntityType="Self.ProductCategory" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Provider" EntityType="Self.Provider" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Role" EntityType="Self.Role" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="StatusOrder" EntityType="Self.StatusOrder" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
- <AssociationSet Name="FK__OrderProd__Order__1CBC4616" Association="Self.FK__OrderProd__Order__1CBC4616">
- <End Role="Order" EntitySet="Order" />
- <End Role="OrderProduct" EntitySet="OrderProduct" />
- </AssociationSet>
- <AssociationSet Name="FK__OrderProd__Produ__1DB06A4F" Association="Self.FK__OrderProd__Produ__1DB06A4F">
- <End Role="Product" EntitySet="Product" />
- <End Role="OrderProduct" EntitySet="OrderProduct" />
- </AssociationSet>
- <AssociationSet Name="FK__User__UserRole__398D8EEE" Association="Self.FK__User__UserRole__398D8EEE">
- <End Role="Role" EntitySet="Role" />
- <End Role="User" EntitySet="User" />
- </AssociationSet>
- <AssociationSet Name="FK_Order_PointsOfIssue" Association="Self.FK_Order_PointsOfIssue">
- <End Role="PointsOfIssue" EntitySet="PointsOfIssue" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK_Order_StateOrder" Association="Self.FK_Order_StateOrder">
- <End Role="StatusOrder" EntitySet="StatusOrder" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK_Order_User" Association="Self.FK_Order_User">
- <End Role="User" EntitySet="User" />
- <End Role="Order" EntitySet="Order" />
- </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_Product_ProductCategory" Association="Self.FK_Product_ProductCategory">
- <End Role="ProductCategory" EntitySet="ProductCategory" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK_Product_Provider" Association="Self.FK_Product_Provider">
- <End Role="Provider" EntitySet="Provider" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- </EntityContainer>
- </Schema></edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="UP_ShechkovaModel" 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="Manufacturer">
- <Key>
- <PropertyRef Name="ManufacturerId" />
- </Key>
- <Property Name="ManufacturerId" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Manufacturer1" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="Product" Relationship="Self.FK_Product_Manufacturer" FromRole="Manufacturer" ToRole="Product" />
- </EntityType>
- <EntityType Name="Order">
- <Key>
- <PropertyRef Name="OrderID" />
- </Key>
- <Property Name="OrderID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="OrderStatus" Type="Int32" Nullable="false" />
- <Property Name="OrderDate" Type="DateTime" Nullable="false" Precision="3" />
- <Property Name="OrderDeliveryDate" Type="DateTime" Precision="3" />
- <Property Name="OrderPickupPoint" Type="Int32" Nullable="false" />
- <Property Name="UserID" Type="Int32" />
- <Property Name="IssueCode" Type="Int32" Nullable="false" />
- <NavigationProperty Name="OrderProduct" Relationship="Self.FK__OrderProd__Order__1CBC4616" FromRole="Order" ToRole="OrderProduct" />
- <NavigationProperty Name="PointsOfIssue" Relationship="Self.FK_Order_PointsOfIssue" FromRole="Order" ToRole="PointsOfIssue" />
- <NavigationProperty Name="StatusOrder" Relationship="Self.FK_Order_StateOrder" FromRole="Order" ToRole="StatusOrder" />
- <NavigationProperty Name="User" Relationship="Self.FK_Order_User" FromRole="Order" ToRole="User" />
- </EntityType>
- <EntityType Name="OrderProduct">
- <Key>
- <PropertyRef Name="OrderID" />
- <PropertyRef Name="ProductArticleNumber" />
- </Key>
- <Property Name="OrderID" Type="Int32" Nullable="false" />
- <Property Name="ProductArticleNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="ProductCount" Type="Int32" Nullable="false" />
- <NavigationProperty Name="Order" Relationship="Self.FK__OrderProd__Order__1CBC4616" FromRole="OrderProduct" ToRole="Order" />
- <NavigationProperty Name="Product" Relationship="Self.FK__OrderProd__Produ__1DB06A4F" FromRole="OrderProduct" ToRole="Product" />
- </EntityType>
- <EntityType Name="PointsOfIssue">
- <Key>
- <PropertyRef Name="PointID" />
- </Key>
- <Property Name="PointID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="PointName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="Order" Relationship="Self.FK_Order_PointsOfIssue" FromRole="PointsOfIssue" ToRole="Order" />
- </EntityType>
- <EntityType Name="Product">
- <Key>
- <PropertyRef Name="ProductArticleNumber" />
- </Key>
- <Property Name="ProductArticleNumber" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="ProductName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="ProductDescription" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="ProductCategory" Type="Int32" Nullable="false" />
- <Property Name="ProductPhoto" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="ProductManufacturer" Type="Int32" Nullable="false" />
- <Property Name="ProductProvider" Type="Int32" Nullable="false" />
- <Property Name="ProductCost" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
- <Property Name="ProductDiscountAmount" Type="Byte" />
- <Property Name="ProductQuantityInStock" Type="Int32" />
- <NavigationProperty Name="Manufacturer" Relationship="Self.FK_Product_Manufacturer" FromRole="Product" ToRole="Manufacturer" />
- <NavigationProperty Name="OrderProduct" Relationship="Self.FK__OrderProd__Produ__1DB06A4F" FromRole="Product" ToRole="OrderProduct" />
- <NavigationProperty Name="ProductCategory1" Relationship="Self.FK_Product_ProductCategory" FromRole="Product" ToRole="ProductCategory" />
- <NavigationProperty Name="Provider" Relationship="Self.FK_Product_Provider" FromRole="Product" ToRole="Provider" />
- </EntityType>
- <EntityType Name="ProductCategory">
- <Key>
- <PropertyRef Name="CategoryId" />
- </Key>
- <Property Name="CategoryId" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="CategoryTitle" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="Product" Relationship="Self.FK_Product_ProductCategory" FromRole="ProductCategory" ToRole="Product" />
- </EntityType>
- <EntityType Name="Provider">
- <Key>
- <PropertyRef Name="ProviderId" />
- </Key>
- <Property Name="ProviderId" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Provider1" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="Product" Relationship="Self.FK_Product_Provider" FromRole="Provider" ToRole="Product" />
- </EntityType>
- <EntityType Name="Role">
- <Key>
- <PropertyRef Name="RoleID" />
- </Key>
- <Property Name="RoleID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="RoleName" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="User" Relationship="Self.FK__User__UserRole__398D8EEE" FromRole="Role" ToRole="User" />
- </EntityType>
- <EntityType Name="StatusOrder">
- <Key>
- <PropertyRef Name="StatusId" />
- </Key>
- <Property Name="StatusId" Type="Int32" Nullable="false" />
- <Property Name="StatusTitle" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="Order" Relationship="Self.FK_Order_StateOrder" FromRole="StatusOrder" ToRole="Order" />
- </EntityType>
- <EntityType Name="User">
- <Key>
- <PropertyRef Name="UserID" />
- </Key>
- <Property Name="UserID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="UserSurname" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="UserName" Type="String" MaxLength="100" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="UserPatronymic" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
- <Property Name="UserLogin" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="UserPassword" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="UserRole" Type="Int32" Nullable="false" />
- <NavigationProperty Name="Order" Relationship="Self.FK_Order_User" FromRole="User" ToRole="Order" />
- <NavigationProperty Name="Role" Relationship="Self.FK__User__UserRole__398D8EEE" FromRole="User" ToRole="Role" />
- </EntityType>
- <Association Name="FK_Product_Manufacturer">
- <End Role="Manufacturer" Type="Self.Manufacturer" Multiplicity="1" />
- <End Role="Product" Type="Self.Product" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Manufacturer">
- <PropertyRef Name="ManufacturerId" />
- </Principal>
- <Dependent Role="Product">
- <PropertyRef Name="ProductManufacturer" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__OrderProd__Order__1CBC4616">
- <End Role="Order" Type="Self.Order" Multiplicity="1" />
- <End Role="OrderProduct" Type="Self.OrderProduct" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Order">
- <PropertyRef Name="OrderID" />
- </Principal>
- <Dependent Role="OrderProduct">
- <PropertyRef Name="OrderID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Order_PointsOfIssue">
- <End Role="PointsOfIssue" Type="Self.PointsOfIssue" Multiplicity="1" />
- <End Role="Order" Type="Self.Order" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="PointsOfIssue">
- <PropertyRef Name="PointID" />
- </Principal>
- <Dependent Role="Order">
- <PropertyRef Name="OrderPickupPoint" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Order_StateOrder">
- <End Role="StatusOrder" Type="Self.StatusOrder" Multiplicity="1" />
- <End Role="Order" Type="Self.Order" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="StatusOrder">
- <PropertyRef Name="StatusId" />
- </Principal>
- <Dependent Role="Order">
- <PropertyRef Name="OrderStatus" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Order_User">
- <End Role="User" Type="Self.User" Multiplicity="0..1" />
- <End Role="Order" Type="Self.Order" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="User">
- <PropertyRef Name="UserID" />
- </Principal>
- <Dependent Role="Order">
- <PropertyRef Name="UserID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__OrderProd__Produ__1DB06A4F">
- <End Role="Product" Type="Self.Product" Multiplicity="1" />
- <End Role="OrderProduct" Type="Self.OrderProduct" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Product">
- <PropertyRef Name="ProductArticleNumber" />
- </Principal>
- <Dependent Role="OrderProduct">
- <PropertyRef Name="ProductArticleNumber" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Product_ProductCategory">
- <End Role="ProductCategory" Type="Self.ProductCategory" Multiplicity="1" />
- <End Role="Product" Type="Self.Product" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="ProductCategory">
- <PropertyRef Name="CategoryId" />
- </Principal>
- <Dependent Role="Product">
- <PropertyRef Name="ProductProvider" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Product_Provider">
- <End Role="Provider" Type="Self.Provider" Multiplicity="1" />
- <End Role="Product" Type="Self.Product" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Provider">
- <PropertyRef Name="ProviderId" />
- </Principal>
- <Dependent Role="Product">
- <PropertyRef Name="ProductProvider" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__User__UserRole__398D8EEE">
- <End Role="Role" Type="Self.Role" Multiplicity="1" />
- <End Role="User" Type="Self.User" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Role">
- <PropertyRef Name="RoleID" />
- </Principal>
- <Dependent Role="User">
- <PropertyRef Name="UserRole" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="BaseU" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="Manufacturer" EntityType="Self.Manufacturer" />
- <EntitySet Name="Order" EntityType="Self.Order" />
- <EntitySet Name="OrderProduct" EntityType="Self.OrderProduct" />
- <EntitySet Name="PointsOfIssue" EntityType="Self.PointsOfIssue" />
- <EntitySet Name="Product" EntityType="Self.Product" />
- <EntitySet Name="ProductCategory" EntityType="Self.ProductCategory" />
- <EntitySet Name="Provider" EntityType="Self.Provider" />
- <EntitySet Name="Role" EntityType="Self.Role" />
- <EntitySet Name="StatusOrder" EntityType="Self.StatusOrder" />
- <EntitySet Name="User" EntityType="Self.User" />
- <AssociationSet Name="FK_Product_Manufacturer" Association="Self.FK_Product_Manufacturer">
- <End Role="Manufacturer" EntitySet="Manufacturer" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK__OrderProd__Order__1CBC4616" Association="Self.FK__OrderProd__Order__1CBC4616">
- <End Role="Order" EntitySet="Order" />
- <End Role="OrderProduct" EntitySet="OrderProduct" />
- </AssociationSet>
- <AssociationSet Name="FK_Order_PointsOfIssue" Association="Self.FK_Order_PointsOfIssue">
- <End Role="PointsOfIssue" EntitySet="PointsOfIssue" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK_Order_StateOrder" Association="Self.FK_Order_StateOrder">
- <End Role="StatusOrder" EntitySet="StatusOrder" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK_Order_User" Association="Self.FK_Order_User">
- <End Role="User" EntitySet="User" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK__OrderProd__Produ__1DB06A4F" Association="Self.FK__OrderProd__Produ__1DB06A4F">
- <End Role="Product" EntitySet="Product" />
- <End Role="OrderProduct" EntitySet="OrderProduct" />
- </AssociationSet>
- <AssociationSet Name="FK_Product_ProductCategory" Association="Self.FK_Product_ProductCategory">
- <End Role="ProductCategory" EntitySet="ProductCategory" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK_Product_Provider" Association="Self.FK_Product_Provider">
- <End Role="Provider" EntitySet="Provider" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK__User__UserRole__398D8EEE" Association="Self.FK__User__UserRole__398D8EEE">
- <End Role="Role" EntitySet="Role" />
- <End Role="User" EntitySet="User" />
- </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="Хранилище UP_ShechkovaModelContainer" CdmEntityContainer="BaseU">
- <EntitySetMapping Name="Manufacturer">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.Manufacturer">
- <MappingFragment StoreEntitySet="Manufacturer">
- <ScalarProperty Name="ManufacturerId" ColumnName="ManufacturerId" />
- <ScalarProperty Name="Manufacturer1" ColumnName="Manufacturer" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Order">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.Order">
- <MappingFragment StoreEntitySet="Order">
- <ScalarProperty Name="OrderID" ColumnName="OrderID" />
- <ScalarProperty Name="OrderStatus" ColumnName="OrderStatus" />
- <ScalarProperty Name="OrderDate" ColumnName="OrderDate" />
- <ScalarProperty Name="OrderDeliveryDate" ColumnName="OrderDeliveryDate" />
- <ScalarProperty Name="OrderPickupPoint" ColumnName="OrderPickupPoint" />
- <ScalarProperty Name="UserID" ColumnName="UserID" />
- <ScalarProperty Name="IssueCode" ColumnName="IssueCode" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="OrderProduct">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.OrderProduct">
- <MappingFragment StoreEntitySet="OrderProduct">
- <ScalarProperty Name="OrderID" ColumnName="OrderID" />
- <ScalarProperty Name="ProductArticleNumber" ColumnName="ProductArticleNumber" />
- <ScalarProperty Name="ProductCount" ColumnName="ProductCount" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="PointsOfIssue">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.PointsOfIssue">
- <MappingFragment StoreEntitySet="PointsOfIssue">
- <ScalarProperty Name="PointID" ColumnName="PointID" />
- <ScalarProperty Name="PointName" ColumnName="PointName" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Product">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.Product">
- <MappingFragment StoreEntitySet="Product">
- <ScalarProperty Name="ProductArticleNumber" ColumnName="ProductArticleNumber" />
- <ScalarProperty Name="ProductName" ColumnName="ProductName" />
- <ScalarProperty Name="ProductDescription" ColumnName="ProductDescription" />
- <ScalarProperty Name="ProductCategory" ColumnName="ProductCategory" />
- <ScalarProperty Name="ProductPhoto" ColumnName="ProductPhoto" />
- <ScalarProperty Name="ProductManufacturer" ColumnName="ProductManufacturer" />
- <ScalarProperty Name="ProductProvider" ColumnName="ProductProvider" />
- <ScalarProperty Name="ProductCost" ColumnName="ProductCost" />
- <ScalarProperty Name="ProductDiscountAmount" ColumnName="ProductDiscountAmount" />
- <ScalarProperty Name="ProductQuantityInStock" ColumnName="ProductQuantityInStock" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="ProductCategory">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.ProductCategory">
- <MappingFragment StoreEntitySet="ProductCategory">
- <ScalarProperty Name="CategoryId" ColumnName="CategoryId" />
- <ScalarProperty Name="CategoryTitle" ColumnName="CategoryTitle" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Provider">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.Provider">
- <MappingFragment StoreEntitySet="Provider">
- <ScalarProperty Name="ProviderId" ColumnName="ProviderId" />
- <ScalarProperty Name="Provider1" ColumnName="Provider" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Role">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.Role">
- <MappingFragment StoreEntitySet="Role">
- <ScalarProperty Name="RoleID" ColumnName="RoleID" />
- <ScalarProperty Name="RoleName" ColumnName="RoleName" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="StatusOrder">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.StatusOrder">
- <MappingFragment StoreEntitySet="StatusOrder">
- <ScalarProperty Name="StatusId" ColumnName="StatusId" />
- <ScalarProperty Name="StatusTitle" ColumnName="StatusTitle" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="User">
- <EntityTypeMapping TypeName="UP_ShechkovaModel.User">
- <MappingFragment StoreEntitySet="User">
- <ScalarProperty Name="UserID" ColumnName="UserID" />
- <ScalarProperty Name="UserSurname" ColumnName="UserSurname" />
- <ScalarProperty Name="UserName" ColumnName="UserName" />
- <ScalarProperty Name="UserPatronymic" ColumnName="UserPatronymic" />
- <ScalarProperty Name="UserLogin" ColumnName="UserLogin" />
- <ScalarProperty Name="UserPassword" ColumnName="UserPassword" />
- <ScalarProperty Name="UserRole" ColumnName="UserRole" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- </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>
|