123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402 |
- <?xml version="1.0" encoding="utf-8"?>
- <Schema Namespace="Goiman_A_AModel" 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="Agent">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Title" Type="String" MaxLength="150" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="AgentTypeID" Type="Int32" Nullable="false" />
- <Property Name="Address" Type="String" MaxLength="300" FixedLength="false" Unicode="true" />
- <Property Name="INN" Type="String" MaxLength="12" FixedLength="false" Unicode="false" Nullable="false" />
- <Property Name="KPP" Type="String" MaxLength="9" FixedLength="false" Unicode="false" />
- <Property Name="DirectorName" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
- <Property Name="Phone" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Email" Type="String" MaxLength="255" FixedLength="false" Unicode="true" />
- <Property Name="Logo" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
- <Property Name="Priority" Type="Int32" Nullable="false" />
- <NavigationProperty Name="AgentType" Relationship="Self.FK_Agent_AgentType" FromRole="Agent" ToRole="AgentType" />
- <NavigationProperty Name="AgentPriorityHistory" Relationship="Self.FK_AgentPriorityHistory_Agent" FromRole="Agent" ToRole="AgentPriorityHistory" />
- <NavigationProperty Name="ProductSale" Relationship="Self.FK_ProductSale_Agent" FromRole="Agent" ToRole="ProductSale" />
- <NavigationProperty Name="Shop" Relationship="Self.FK_Shop_Agent" FromRole="Agent" ToRole="Shop" />
- </EntityType>
- <EntityType Name="AgentPriorityHistory">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="AgentID" Type="Int32" Nullable="false" />
- <Property Name="ChangeDate" Type="DateTime" Nullable="false" Precision="3" />
- <Property Name="PriorityValue" Type="Int32" Nullable="false" />
- <NavigationProperty Name="Agent" Relationship="Self.FK_AgentPriorityHistory_Agent" FromRole="AgentPriorityHistory" ToRole="Agent" />
- </EntityType>
- <EntityType Name="AgentType">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Title" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Image" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
- <NavigationProperty Name="Agent" Relationship="Self.FK_Agent_AgentType" FromRole="AgentType" ToRole="Agent" />
- </EntityType>
- <EntityType Name="Material">
- <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="CountInPack" Type="Int32" Nullable="false" />
- <Property Name="Unit" Type="String" MaxLength="10" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="CountInStock" Type="Double" />
- <Property Name="MinCount" Type="Double" Nullable="false" />
- <Property Name="Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="Cost" Type="Decimal" Precision="10" Scale="2" Nullable="false" />
- <Property Name="Image" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
- <Property Name="MaterialTypeID" Type="Int32" Nullable="false" />
- <NavigationProperty Name="MaterialType" Relationship="Self.FK_Material_MaterialType" FromRole="Material" ToRole="MaterialType" />
- <NavigationProperty Name="MaterialCountHistory" Relationship="Self.FK_MaterialCountHistory_Material" FromRole="Material" ToRole="MaterialCountHistory" />
- <NavigationProperty Name="ProductMaterial" Relationship="Self.FK_ProductMaterial_Material" FromRole="Material" ToRole="ProductMaterial" />
- <NavigationProperty Name="Supplier" Relationship="Self.MaterialSupplier" FromRole="Material" ToRole="Supplier" />
- </EntityType>
- <EntityType Name="MaterialCountHistory">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="MaterialID" Type="Int32" Nullable="false" />
- <Property Name="ChangeDate" Type="DateTime" Nullable="false" Precision="3" />
- <Property Name="CountValue" Type="Double" Nullable="false" />
- <NavigationProperty Name="Material" Relationship="Self.FK_MaterialCountHistory_Material" FromRole="MaterialCountHistory" ToRole="Material" />
- </EntityType>
- <EntityType Name="MaterialType">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Title" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="DefectedPercent" Type="Double" />
- <NavigationProperty Name="Material" Relationship="Self.FK_Material_MaterialType" FromRole="MaterialType" ToRole="Material" />
- </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="ProductTypeID" Type="Int32" />
- <Property Name="ArticleNumber" Type="String" MaxLength="10" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="Image" Type="String" MaxLength="100" FixedLength="false" Unicode="true" />
- <Property Name="ProductionPersonCount" Type="Int32" />
- <Property Name="ProductionWorkshopNumber" Type="Int32" />
- <Property Name="MinCostForAgent" Type="Decimal" Precision="10" Scale="2" Nullable="false" />
- <NavigationProperty Name="ProductType" Relationship="Self.FK_Product_ProductType" FromRole="Product" ToRole="ProductType" />
- <NavigationProperty Name="ProductCostHistory" Relationship="Self.FK_ProductCostHistory_Product" FromRole="Product" ToRole="ProductCostHistory" />
- <NavigationProperty Name="ProductMaterial" Relationship="Self.FK_ProductMaterial_Product" FromRole="Product" ToRole="ProductMaterial" />
- <NavigationProperty Name="ProductSale" Relationship="Self.FK_ProductSale_Product" FromRole="Product" ToRole="ProductSale" />
- </EntityType>
- <EntityType Name="ProductCostHistory">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="ProductID" Type="Int32" Nullable="false" />
- <Property Name="ChangeDate" Type="DateTime" Nullable="false" Precision="3" />
- <Property Name="CostValue" Type="Decimal" Precision="10" Scale="2" Nullable="false" />
- <NavigationProperty Name="Product" Relationship="Self.FK_ProductCostHistory_Product" FromRole="ProductCostHistory" ToRole="Product" />
- </EntityType>
- <EntityType Name="ProductMaterial">
- <Key>
- <PropertyRef Name="ProductID" />
- <PropertyRef Name="MaterialID" />
- </Key>
- <Property Name="ProductID" Type="Int32" Nullable="false" />
- <Property Name="MaterialID" Type="Int32" Nullable="false" />
- <Property Name="Count" Type="Double" />
- <NavigationProperty Name="Material" Relationship="Self.FK_ProductMaterial_Material" FromRole="ProductMaterial" ToRole="Material" />
- <NavigationProperty Name="Product" Relationship="Self.FK_ProductMaterial_Product" FromRole="ProductMaterial" ToRole="Product" />
- </EntityType>
- <EntityType Name="ProductSale">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="AgentID" Type="Int32" Nullable="false" />
- <Property Name="ProductID" Type="Int32" Nullable="false" />
- <Property Name="SaleDate" Type="DateTime" Nullable="false" Precision="0" />
- <Property Name="ProductCount" Type="Int32" Nullable="false" />
- <NavigationProperty Name="Agent" Relationship="Self.FK_ProductSale_Agent" FromRole="ProductSale" ToRole="Agent" />
- <NavigationProperty Name="Product" Relationship="Self.FK_ProductSale_Product" FromRole="ProductSale" ToRole="Product" />
- </EntityType>
- <EntityType Name="ProductType">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Title" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="DefectedPercent" Type="Double" />
- <NavigationProperty Name="Product" Relationship="Self.FK_Product_ProductType" FromRole="ProductType" ToRole="Product" />
- </EntityType>
- <EntityType Name="Shop">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Title" Type="String" MaxLength="150" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Address" Type="String" MaxLength="300" FixedLength="false" Unicode="true" />
- <Property Name="AgentID" Type="Int32" Nullable="false" />
- <NavigationProperty Name="Agent" Relationship="Self.FK_Shop_Agent" FromRole="Shop" ToRole="Agent" />
- </EntityType>
- <EntityType Name="Supplier">
- <Key>
- <PropertyRef Name="ID" />
- </Key>
- <Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Title" Type="String" MaxLength="150" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="INN" Type="String" MaxLength="12" FixedLength="false" Unicode="false" Nullable="false" />
- <Property Name="StartDate" Type="DateTime" Nullable="false" Precision="0" />
- <Property Name="QualityRating" Type="Int32" />
- <Property Name="SupplierType" Type="String" MaxLength="20" FixedLength="false" Unicode="true" />
- <NavigationProperty Name="Material" Relationship="Self.MaterialSupplier" FromRole="Supplier" ToRole="Material" />
- </EntityType>
- <Association Name="FK_Agent_AgentType">
- <End Role="AgentType" Type="Self.AgentType" Multiplicity="1" />
- <End Role="Agent" Type="Self.Agent" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="AgentType">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="Agent">
- <PropertyRef Name="AgentTypeID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_AgentPriorityHistory_Agent">
- <End Role="Agent" Type="Self.Agent" Multiplicity="1" />
- <End Role="AgentPriorityHistory" Type="Self.AgentPriorityHistory" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Agent">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="AgentPriorityHistory">
- <PropertyRef Name="AgentID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_ProductSale_Agent">
- <End Role="Agent" Type="Self.Agent" Multiplicity="1" />
- <End Role="ProductSale" Type="Self.ProductSale" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Agent">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="ProductSale">
- <PropertyRef Name="AgentID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Shop_Agent">
- <End Role="Agent" Type="Self.Agent" Multiplicity="1" />
- <End Role="Shop" Type="Self.Shop" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Agent">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="Shop">
- <PropertyRef Name="AgentID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Material_MaterialType">
- <End Role="MaterialType" Type="Self.MaterialType" Multiplicity="1" />
- <End Role="Material" Type="Self.Material" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="MaterialType">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="Material">
- <PropertyRef Name="MaterialTypeID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_MaterialCountHistory_Material">
- <End Role="Material" Type="Self.Material" Multiplicity="1" />
- <End Role="MaterialCountHistory" Type="Self.MaterialCountHistory" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Material">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="MaterialCountHistory">
- <PropertyRef Name="MaterialID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_ProductMaterial_Material">
- <End Role="Material" Type="Self.Material" Multiplicity="1" />
- <End Role="ProductMaterial" Type="Self.ProductMaterial" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Material">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="ProductMaterial">
- <PropertyRef Name="MaterialID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Product_ProductType">
- <End Role="ProductType" Type="Self.ProductType" Multiplicity="0..1" />
- <End Role="Product" Type="Self.Product" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="ProductType">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="Product">
- <PropertyRef Name="ProductTypeID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_ProductCostHistory_Product">
- <End Role="Product" Type="Self.Product" Multiplicity="1" />
- <End Role="ProductCostHistory" Type="Self.ProductCostHistory" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Product">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="ProductCostHistory">
- <PropertyRef Name="ProductID" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_ProductMaterial_Product">
- <End Role="Product" Type="Self.Product" Multiplicity="1" />
- <End Role="ProductMaterial" Type="Self.ProductMaterial" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Product">
- <PropertyRef Name="ID" />
- </Principal>
- <Dependent Role="ProductMaterial">
- <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="MaterialSupplier">
- <End Role="Material" Type="Self.Material" Multiplicity="*" />
- <End Role="Supplier" Type="Self.Supplier" Multiplicity="*" />
- </Association>
- <EntityContainer Name="Goiman_A_AEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="Agent" EntityType="Self.Agent" />
- <EntitySet Name="AgentPriorityHistory" EntityType="Self.AgentPriorityHistory" />
- <EntitySet Name="AgentType" EntityType="Self.AgentType" />
- <EntitySet Name="Material" EntityType="Self.Material" />
- <EntitySet Name="MaterialCountHistory" EntityType="Self.MaterialCountHistory" />
- <EntitySet Name="MaterialType" EntityType="Self.MaterialType" />
- <EntitySet Name="Product" EntityType="Self.Product" />
- <EntitySet Name="ProductCostHistory" EntityType="Self.ProductCostHistory" />
- <EntitySet Name="ProductMaterial" EntityType="Self.ProductMaterial" />
- <EntitySet Name="ProductSale" EntityType="Self.ProductSale" />
- <EntitySet Name="ProductType" EntityType="Self.ProductType" />
- <EntitySet Name="Shop" EntityType="Self.Shop" />
- <EntitySet Name="Supplier" EntityType="Self.Supplier" />
- <AssociationSet Name="FK_Agent_AgentType" Association="Self.FK_Agent_AgentType">
- <End Role="AgentType" EntitySet="AgentType" />
- <End Role="Agent" EntitySet="Agent" />
- </AssociationSet>
- <AssociationSet Name="FK_AgentPriorityHistory_Agent" Association="Self.FK_AgentPriorityHistory_Agent">
- <End Role="Agent" EntitySet="Agent" />
- <End Role="AgentPriorityHistory" EntitySet="AgentPriorityHistory" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductSale_Agent" Association="Self.FK_ProductSale_Agent">
- <End Role="Agent" EntitySet="Agent" />
- <End Role="ProductSale" EntitySet="ProductSale" />
- </AssociationSet>
- <AssociationSet Name="FK_Shop_Agent" Association="Self.FK_Shop_Agent">
- <End Role="Agent" EntitySet="Agent" />
- <End Role="Shop" EntitySet="Shop" />
- </AssociationSet>
- <AssociationSet Name="FK_Material_MaterialType" Association="Self.FK_Material_MaterialType">
- <End Role="MaterialType" EntitySet="MaterialType" />
- <End Role="Material" EntitySet="Material" />
- </AssociationSet>
- <AssociationSet Name="FK_MaterialCountHistory_Material" Association="Self.FK_MaterialCountHistory_Material">
- <End Role="Material" EntitySet="Material" />
- <End Role="MaterialCountHistory" EntitySet="MaterialCountHistory" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductMaterial_Material" Association="Self.FK_ProductMaterial_Material">
- <End Role="Material" EntitySet="Material" />
- <End Role="ProductMaterial" EntitySet="ProductMaterial" />
- </AssociationSet>
- <AssociationSet Name="FK_Product_ProductType" Association="Self.FK_Product_ProductType">
- <End Role="ProductType" EntitySet="ProductType" />
- <End Role="Product" EntitySet="Product" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductCostHistory_Product" Association="Self.FK_ProductCostHistory_Product">
- <End Role="Product" EntitySet="Product" />
- <End Role="ProductCostHistory" EntitySet="ProductCostHistory" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductMaterial_Product" Association="Self.FK_ProductMaterial_Product">
- <End Role="Product" EntitySet="Product" />
- <End Role="ProductMaterial" EntitySet="ProductMaterial" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductSale_Product" Association="Self.FK_ProductSale_Product">
- <End Role="Product" EntitySet="Product" />
- <End Role="ProductSale" EntitySet="ProductSale" />
- </AssociationSet>
- <AssociationSet Name="MaterialSupplier" Association="Self.MaterialSupplier">
- <End Role="Material" EntitySet="Material" />
- <End Role="Supplier" EntitySet="Supplier" />
- </AssociationSet>
- <EntitySet Name="Role" EntityType="Goiman_A_AModel.Role" />
- <EntitySet Name="User" EntityType="Goiman_A_AModel.User" />
- <AssociationSet Name="FK_User_Role" Association="Goiman_A_AModel.FK_User_Role">
- <End Role="Role" EntitySet="Role" />
- <End Role="User" EntitySet="User" />
- </AssociationSet>
- </EntityContainer>
- <EntityType Name="Role">
- <Key>
- <PropertyRef Name="Role_ID" />
- </Key>
- <Property Name="Role_ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="RoleName" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
- <NavigationProperty Name="User" Relationship="Goiman_A_AModel.FK_User_Role" FromRole="Role" ToRole="User" />
- </EntityType>
- <EntityType Name="User">
- <Key>
- <PropertyRef Name="User_ID" />
- </Key>
- <Property Name="User_ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Login" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
- <Property Name="Password" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
- <Property Name="SurName" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
- <Property Name="FirstName" Type="String" Nullable="false" MaxLength="50" FixedLength="false" Unicode="true" />
- <Property Name="MiddleName" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
- <Property Name="Role_id" Type="Int32" Nullable="false" />
- <NavigationProperty Name="Role" Relationship="Goiman_A_AModel.FK_User_Role" FromRole="User" ToRole="Role" />
- </EntityType>
- <Association Name="FK_User_Role">
- <End Type="Goiman_A_AModel.Role" Role="Role" Multiplicity="1">
- <OnDelete Action="Cascade" />
- </End>
- <End Type="Goiman_A_AModel.User" Role="User" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Role">
- <PropertyRef Name="Role_ID" />
- </Principal>
- <Dependent Role="User">
- <PropertyRef Name="Role_id" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- </Schema>
|