123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685 |
- <?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_KrupinaModel" 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" Nullable="false" />
- <Property Name="OrderPickUpPoint" Type="int" Nullable="false" />
- <Property Name="UserID" Type="int" />
- <Property Name="Code" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="OrderProduct">
- <Key>
- <PropertyRef Name="OrderProductID" />
- </Key>
- <Property Name="OrderProductID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <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="PickUpPoint">
- <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="sysdiagrams">
- <Key>
- <PropertyRef Name="diagram_id" />
- </Key>
- <Property Name="name" Type="nvarchar" MaxLength="128" Nullable="false" />
- <Property Name="principal_id" Type="int" Nullable="false" />
- <Property Name="diagram_id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="version" Type="int" />
- <Property Name="definition" Type="varbinary(max)" />
- </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__Order__OrderPick__7B5B524B">
- <End Role="PickUpPoint" Type="Self.PickUpPoint" Multiplicity="1" />
- <End Role="Order" Type="Self.Order" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="PickUpPoint">
- <PropertyRef Name="PointID" />
- </Principal>
- <Dependent Role="Order">
- <PropertyRef Name="OrderPickUpPoint" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__Order__OrderStat__7A672E12">
- <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__UserID__7C4F7684">
- <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__Order__07C12930">
- <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__08B54D69">
- <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__Product__00200768">
- <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__Product__01142BA1">
- <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__Product__Product__7F2BE32F">
- <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="ProductCategory" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__User__UserRole__534D60F1">
- <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="Хранилище UP_KrupinaModelContainer">
- <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="PickUpPoint" EntityType="Self.PickUpPoint" 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="sysdiagrams" EntityType="Self.sysdiagrams" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
- <AssociationSet Name="FK__Order__OrderPick__7B5B524B" Association="Self.FK__Order__OrderPick__7B5B524B">
- <End Role="PickUpPoint" EntitySet="PickUpPoint" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK__Order__OrderStat__7A672E12" Association="Self.FK__Order__OrderStat__7A672E12">
- <End Role="StatusOrder" EntitySet="StatusOrder" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK__Order__UserID__7C4F7684" Association="Self.FK__Order__UserID__7C4F7684">
- <End Role="User" EntitySet="User" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK__OrderProd__Order__07C12930" Association="Self.FK__OrderProd__Order__07C12930">
- <End Role="Order" EntitySet="Order" />
- <End Role="OrderProduct" EntitySet="OrderProduct" />
- </AssociationSet>
- <AssociationSet Name="FK__OrderProd__Produ__08B54D69" Association="Self.FK__OrderProd__Produ__08B54D69">
- <End Role="Product" EntitySet="Product" />
- <End Role="OrderProduct" EntitySet="OrderProduct" />
- </AssociationSet>
- <AssociationSet Name="FK__Product__Product__00200768" Association="Self.FK__Product__Product__00200768">
- <End Role="Manufacturer" EntitySet="Manufacturer" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK__Product__Product__01142BA1" Association="Self.FK__Product__Product__01142BA1">
- <End Role="Provider" EntitySet="Provider" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK__Product__Product__7F2BE32F" Association="Self.FK__Product__Product__7F2BE32F">
- <End Role="ProductCategory" EntitySet="ProductCategory" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK__User__UserRole__534D60F1" Association="Self.FK__User__UserRole__534D60F1">
- <End Role="Role" EntitySet="Role" />
- <End Role="User" EntitySet="User" />
- </AssociationSet>
- </EntityContainer>
- </Schema>
- </edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="UP_KrupinaModel" 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__Product__00200768" 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" Nullable="false" Precision="3" />
- <Property Name="OrderPickUpPoint" Type="Int32" Nullable="false" />
- <Property Name="UserID" Type="Int32" />
- <Property Name="Code" Type="Int32" Nullable="false" />
- <NavigationProperty Name="PickUpPoint" Relationship="Self.FK__Order__OrderPick__7B5B524B" FromRole="Order" ToRole="PickUpPoint" />
- <NavigationProperty Name="StatusOrder" Relationship="Self.FK__Order__OrderStat__7A672E12" FromRole="Order" ToRole="StatusOrder" />
- <NavigationProperty Name="User" Relationship="Self.FK__Order__UserID__7C4F7684" FromRole="Order" ToRole="User" />
- <NavigationProperty Name="OrderProduct" Relationship="Self.FK__OrderProd__Order__07C12930" FromRole="Order" ToRole="OrderProduct" />
- </EntityType>
- <EntityType Name="OrderProduct">
- <Key>
- <PropertyRef Name="OrderProductID" />
- </Key>
- <Property Name="OrderProductID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <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__07C12930" FromRole="OrderProduct" ToRole="Order" />
- <NavigationProperty Name="Product" Relationship="Self.FK__OrderProd__Produ__08B54D69" FromRole="OrderProduct" ToRole="Product" />
- </EntityType>
- <EntityType Name="PickUpPoint">
- <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__OrderPick__7B5B524B" FromRole="PickUpPoint" 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__Product__00200768" FromRole="Product" ToRole="Manufacturer" />
- <NavigationProperty Name="OrderProduct" Relationship="Self.FK__OrderProd__Produ__08B54D69" FromRole="Product" ToRole="OrderProduct" />
- <NavigationProperty Name="Provider" Relationship="Self.FK__Product__Product__01142BA1" FromRole="Product" ToRole="Provider" />
- <NavigationProperty Name="ProductCategory1" Relationship="Self.FK__Product__Product__7F2BE32F" FromRole="Product" ToRole="ProductCategory" />
- </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__Product__7F2BE32F" 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__Product__01142BA1" 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__534D60F1" 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__OrderStat__7A672E12" FromRole="StatusOrder" ToRole="Order" />
- </EntityType>
- <EntityType Name="sysdiagrams">
- <Key>
- <PropertyRef Name="diagram_id" />
- </Key>
- <Property Name="name" Type="String" MaxLength="128" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="principal_id" Type="Int32" Nullable="false" />
- <Property Name="diagram_id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="version" Type="Int32" />
- <Property Name="definition" Type="Binary" MaxLength="Max" FixedLength="false" />
- </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__UserID__7C4F7684" FromRole="User" ToRole="Order" />
- <NavigationProperty Name="Role" Relationship="Self.FK__User__UserRole__534D60F1" FromRole="User" ToRole="Role" />
- </EntityType>
- <Association Name="FK__Product__Product__00200768">
- <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__Order__OrderPick__7B5B524B">
- <End Role="PickUpPoint" Type="Self.PickUpPoint" Multiplicity="1" />
- <End Role="Order" Type="Self.Order" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="PickUpPoint">
- <PropertyRef Name="PointID" />
- </Principal>
- <Dependent Role="Order">
- <PropertyRef Name="OrderPickUpPoint" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__Order__OrderStat__7A672E12">
- <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__UserID__7C4F7684">
- <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__Order__07C12930">
- <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__08B54D69">
- <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__Product__01142BA1">
- <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__Product__Product__7F2BE32F">
- <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="ProductCategory" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__User__UserRole__534D60F1">
- <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="UP_KrupinaEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="Manufacturer" EntityType="Self.Manufacturer" />
- <EntitySet Name="Order" EntityType="Self.Order" />
- <EntitySet Name="OrderProduct" EntityType="Self.OrderProduct" />
- <EntitySet Name="PickUpPoint" EntityType="Self.PickUpPoint" />
- <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="sysdiagrams" EntityType="Self.sysdiagrams" />
- <EntitySet Name="User" EntityType="Self.User" />
- <AssociationSet Name="FK__Product__Product__00200768" Association="Self.FK__Product__Product__00200768">
- <End Role="Manufacturer" EntitySet="Manufacturer" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK__Order__OrderPick__7B5B524B" Association="Self.FK__Order__OrderPick__7B5B524B">
- <End Role="PickUpPoint" EntitySet="PickUpPoint" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK__Order__OrderStat__7A672E12" Association="Self.FK__Order__OrderStat__7A672E12">
- <End Role="StatusOrder" EntitySet="StatusOrder" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK__Order__UserID__7C4F7684" Association="Self.FK__Order__UserID__7C4F7684">
- <End Role="User" EntitySet="User" />
- <End Role="Order" EntitySet="Order" />
- </AssociationSet>
- <AssociationSet Name="FK__OrderProd__Order__07C12930" Association="Self.FK__OrderProd__Order__07C12930">
- <End Role="Order" EntitySet="Order" />
- <End Role="OrderProduct" EntitySet="OrderProduct" />
- </AssociationSet>
- <AssociationSet Name="FK__OrderProd__Produ__08B54D69" Association="Self.FK__OrderProd__Produ__08B54D69">
- <End Role="Product" EntitySet="Product" />
- <End Role="OrderProduct" EntitySet="OrderProduct" />
- </AssociationSet>
- <AssociationSet Name="FK__Product__Product__01142BA1" Association="Self.FK__Product__Product__01142BA1">
- <End Role="Provider" EntitySet="Provider" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK__Product__Product__7F2BE32F" Association="Self.FK__Product__Product__7F2BE32F">
- <End Role="ProductCategory" EntitySet="ProductCategory" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK__User__UserRole__534D60F1" Association="Self.FK__User__UserRole__534D60F1">
- <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_KrupinaModelContainer" CdmEntityContainer="UP_KrupinaEntities">
- <EntitySetMapping Name="Manufacturer">
- <EntityTypeMapping TypeName="UP_KrupinaModel.Manufacturer">
- <MappingFragment StoreEntitySet="Manufacturer">
- <ScalarProperty Name="ManufacturerID" ColumnName="ManufacturerID" />
- <ScalarProperty Name="Manufacturer1" ColumnName="Manufacturer" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Order">
- <EntityTypeMapping TypeName="UP_KrupinaModel.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="Code" ColumnName="Code" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="OrderProduct">
- <EntityTypeMapping TypeName="UP_KrupinaModel.OrderProduct">
- <MappingFragment StoreEntitySet="OrderProduct">
- <ScalarProperty Name="OrderProductID" ColumnName="OrderProductID" />
- <ScalarProperty Name="OrderID" ColumnName="OrderID" />
- <ScalarProperty Name="ProductArticleNumber" ColumnName="ProductArticleNumber" />
- <ScalarProperty Name="ProductCount" ColumnName="ProductCount" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="PickUpPoint">
- <EntityTypeMapping TypeName="UP_KrupinaModel.PickUpPoint">
- <MappingFragment StoreEntitySet="PickUpPoint">
- <ScalarProperty Name="PointID" ColumnName="PointID" />
- <ScalarProperty Name="PointName" ColumnName="PointName" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Product">
- <EntityTypeMapping TypeName="UP_KrupinaModel.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_KrupinaModel.ProductCategory">
- <MappingFragment StoreEntitySet="ProductCategory">
- <ScalarProperty Name="CategoryID" ColumnName="CategoryID" />
- <ScalarProperty Name="CategoryTitle" ColumnName="CategoryTitle" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Provider">
- <EntityTypeMapping TypeName="UP_KrupinaModel.Provider">
- <MappingFragment StoreEntitySet="Provider">
- <ScalarProperty Name="ProviderID" ColumnName="ProviderID" />
- <ScalarProperty Name="Provider1" ColumnName="Provider" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Role">
- <EntityTypeMapping TypeName="UP_KrupinaModel.Role">
- <MappingFragment StoreEntitySet="Role">
- <ScalarProperty Name="RoleID" ColumnName="RoleID" />
- <ScalarProperty Name="RoleName" ColumnName="RoleName" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="StatusOrder">
- <EntityTypeMapping TypeName="UP_KrupinaModel.StatusOrder">
- <MappingFragment StoreEntitySet="StatusOrder">
- <ScalarProperty Name="StatusID" ColumnName="StatusID" />
- <ScalarProperty Name="StatusTitle" ColumnName="StatusTitle" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="sysdiagrams">
- <EntityTypeMapping TypeName="UP_KrupinaModel.sysdiagrams">
- <MappingFragment StoreEntitySet="sysdiagrams">
- <ScalarProperty Name="name" ColumnName="name" />
- <ScalarProperty Name="principal_id" ColumnName="principal_id" />
- <ScalarProperty Name="diagram_id" ColumnName="diagram_id" />
- <ScalarProperty Name="version" ColumnName="version" />
- <ScalarProperty Name="definition" ColumnName="definition" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="User">
- <EntityTypeMapping TypeName="UP_KrupinaModel.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>
|