123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441 |
- <?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="Хранилище TreningDemoModel" 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="Manufacturers">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="Name" Type="nvarchar(max)" Nullable="false" />
- </EntityType>
- <EntityType Name="Orders">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="StatusId" Type="int" Nullable="false" />
- <Property Name="PointId" Type="int" />
- <Property Name="DeliveryDate" Type="date" />
- <Property Name="OrderDate" Type="date" />
- <Property Name="Code" Type="int" />
- </EntityType>
- <EntityType Name="Points">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="IndexPoint" Type="int" Nullable="false" />
- <Property Name="City" Type="nvarchar(max)" Nullable="false" />
- <Property Name="Street" Type="nvarchar(max)" Nullable="false" />
- <Property Name="Home" Type="nvarchar(max)" Nullable="false" />
- </EntityType>
- <EntityType Name="ProductOrders">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="OrderId" Type="int" Nullable="false" />
- <Property Name="ProductId" Type="int" Nullable="false" />
- <Property Name="Count" Type="int" />
- </EntityType>
- <EntityType Name="Products">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="ProductName" Type="nvarchar(max)" />
- <Property Name="ProductDescription" Type="nvarchar(max)" />
- <Property Name="ManufacturerId" Type="int" />
- <Property Name="Price" Type="decimal" Precision="19" Scale="2" />
- <Property Name="CountInStock" Type="int" />
- <Property Name="CountInShop" Type="int" />
- <Property Name="Description" Type="nvarchar(max)" />
- <Property Name="Photo" Type="nvarchar(max)" />
- </EntityType>
- <EntityType Name="Statuses">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="Name" Type="nvarchar(max)" 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>
- <Association Name="FK_Orders_Orders">
- <End Role="Points" Type="Self.Points" Multiplicity="0..1" />
- <End Role="Orders" Type="Self.Orders" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Points">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="Orders">
- <PropertyRef Name="PointId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Orders_Statuses">
- <End Role="Statuses" Type="Self.Statuses" Multiplicity="1" />
- <End Role="Orders" Type="Self.Orders" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Statuses">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="Orders">
- <PropertyRef Name="StatusId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_ProductOrders_Orders">
- <End Role="Orders" Type="Self.Orders" Multiplicity="1" />
- <End Role="ProductOrders" Type="Self.ProductOrders" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Orders">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="ProductOrders">
- <PropertyRef Name="OrderId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_ProductOrders_Products">
- <End Role="Products" Type="Self.Products" Multiplicity="1" />
- <End Role="ProductOrders" Type="Self.ProductOrders" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Products">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="ProductOrders">
- <PropertyRef Name="ProductId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Products_Manufacturers">
- <End Role="Manufacturers" Type="Self.Manufacturers" Multiplicity="0..1" />
- <End Role="Products" Type="Self.Products" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Manufacturers">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="Products">
- <PropertyRef Name="ManufacturerId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="Хранилище TreningDemoModelContainer">
- <EntitySet Name="Manufacturers" EntityType="Self.Manufacturers" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Orders" EntityType="Self.Orders" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Points" EntityType="Self.Points" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="ProductOrders" EntityType="Self.ProductOrders" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Products" EntityType="Self.Products" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Statuses" EntityType="Self.Statuses" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" Schema="dbo" store:Type="Tables" />
- <AssociationSet Name="FK_Orders_Orders" Association="Self.FK_Orders_Orders">
- <End Role="Points" EntitySet="Points" />
- <End Role="Orders" EntitySet="Orders" />
- </AssociationSet>
- <AssociationSet Name="FK_Orders_Statuses" Association="Self.FK_Orders_Statuses">
- <End Role="Statuses" EntitySet="Statuses" />
- <End Role="Orders" EntitySet="Orders" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductOrders_Orders" Association="Self.FK_ProductOrders_Orders">
- <End Role="Orders" EntitySet="Orders" />
- <End Role="ProductOrders" EntitySet="ProductOrders" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductOrders_Products" Association="Self.FK_ProductOrders_Products">
- <End Role="Products" EntitySet="Products" />
- <End Role="ProductOrders" EntitySet="ProductOrders" />
- </AssociationSet>
- <AssociationSet Name="FK_Products_Manufacturers" Association="Self.FK_Products_Manufacturers">
- <End Role="Manufacturers" EntitySet="Manufacturers" />
- <End Role="Products" EntitySet="Products" />
- </AssociationSet>
- </EntityContainer>
- </Schema>
- </edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="TreningDemoModel" 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="Manufacturers">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Name" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="Products" Relationship="Self.FK_Products_Manufacturers" FromRole="Manufacturers" ToRole="Products" />
- </EntityType>
- <EntityType Name="Orders">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="StatusId" Type="Int32" Nullable="false" />
- <Property Name="PointId" Type="Int32" />
- <Property Name="DeliveryDate" Type="DateTime" Precision="0" />
- <Property Name="OrderDate" Type="DateTime" Precision="0" />
- <Property Name="Code" Type="Int32" />
- <NavigationProperty Name="Points" Relationship="Self.FK_Orders_Orders" FromRole="Orders" ToRole="Points" />
- <NavigationProperty Name="Statuses" Relationship="Self.FK_Orders_Statuses" FromRole="Orders" ToRole="Statuses" />
- <NavigationProperty Name="ProductOrders" Relationship="Self.FK_ProductOrders_Orders" FromRole="Orders" ToRole="ProductOrders" />
- </EntityType>
- <EntityType Name="Points">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="IndexPoint" Type="Int32" Nullable="false" />
- <Property Name="City" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Street" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="Home" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="Orders" Relationship="Self.FK_Orders_Orders" FromRole="Points" ToRole="Orders" />
- </EntityType>
- <EntityType Name="ProductOrders">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="OrderId" Type="Int32" Nullable="false" />
- <Property Name="ProductId" Type="Int32" Nullable="false" />
- <Property Name="Count" Type="Int32" />
- <NavigationProperty Name="Orders" Relationship="Self.FK_ProductOrders_Orders" FromRole="ProductOrders" ToRole="Orders" />
- <NavigationProperty Name="Products" Relationship="Self.FK_ProductOrders_Products" FromRole="ProductOrders" ToRole="Products" />
- </EntityType>
- <EntityType Name="Products">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="ProductName" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="ProductDescription" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="ManufacturerId" Type="Int32" />
- <Property Name="Price" Type="Decimal" Precision="19" Scale="2" />
- <Property Name="CountInStock" Type="Int32" />
- <Property Name="CountInShop" Type="Int32" />
- <Property Name="Description" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="Photo" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <NavigationProperty Name="Manufacturers" Relationship="Self.FK_Products_Manufacturers" FromRole="Products" ToRole="Manufacturers" />
- <NavigationProperty Name="ProductOrders" Relationship="Self.FK_ProductOrders_Products" FromRole="Products" ToRole="ProductOrders" />
- </EntityType>
- <EntityType Name="Statuses">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Name" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="Orders" Relationship="Self.FK_Orders_Statuses" FromRole="Statuses" ToRole="Orders" />
- </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>
- <Association Name="FK_Products_Manufacturers">
- <End Role="Manufacturers" Type="Self.Manufacturers" Multiplicity="0..1" />
- <End Role="Products" Type="Self.Products" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Manufacturers">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="Products">
- <PropertyRef Name="ManufacturerId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Orders_Orders">
- <End Role="Points" Type="Self.Points" Multiplicity="0..1" />
- <End Role="Orders" Type="Self.Orders" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Points">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="Orders">
- <PropertyRef Name="PointId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Orders_Statuses">
- <End Role="Statuses" Type="Self.Statuses" Multiplicity="1" />
- <End Role="Orders" Type="Self.Orders" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Statuses">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="Orders">
- <PropertyRef Name="StatusId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_ProductOrders_Orders">
- <End Role="Orders" Type="Self.Orders" Multiplicity="1" />
- <End Role="ProductOrders" Type="Self.ProductOrders" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Orders">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="ProductOrders">
- <PropertyRef Name="OrderId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_ProductOrders_Products">
- <End Role="Products" Type="Self.Products" Multiplicity="1" />
- <End Role="ProductOrders" Type="Self.ProductOrders" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Products">
- <PropertyRef Name="Id" />
- </Principal>
- <Dependent Role="ProductOrders">
- <PropertyRef Name="ProductId" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="TreningDemoEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="Manufacturers" EntityType="Self.Manufacturers" />
- <EntitySet Name="Orders" EntityType="Self.Orders" />
- <EntitySet Name="Points" EntityType="Self.Points" />
- <EntitySet Name="ProductOrders" EntityType="Self.ProductOrders" />
- <EntitySet Name="Products" EntityType="Self.Products" />
- <EntitySet Name="Statuses" EntityType="Self.Statuses" />
- <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" />
- <AssociationSet Name="FK_Products_Manufacturers" Association="Self.FK_Products_Manufacturers">
- <End Role="Manufacturers" EntitySet="Manufacturers" />
- <End Role="Products" EntitySet="Products" />
- </AssociationSet>
- <AssociationSet Name="FK_Orders_Orders" Association="Self.FK_Orders_Orders">
- <End Role="Points" EntitySet="Points" />
- <End Role="Orders" EntitySet="Orders" />
- </AssociationSet>
- <AssociationSet Name="FK_Orders_Statuses" Association="Self.FK_Orders_Statuses">
- <End Role="Statuses" EntitySet="Statuses" />
- <End Role="Orders" EntitySet="Orders" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductOrders_Orders" Association="Self.FK_ProductOrders_Orders">
- <End Role="Orders" EntitySet="Orders" />
- <End Role="ProductOrders" EntitySet="ProductOrders" />
- </AssociationSet>
- <AssociationSet Name="FK_ProductOrders_Products" Association="Self.FK_ProductOrders_Products">
- <End Role="Products" EntitySet="Products" />
- <End Role="ProductOrders" EntitySet="ProductOrders" />
- </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="Хранилище TreningDemoModelContainer" CdmEntityContainer="TreningDemoEntities">
- <EntitySetMapping Name="Manufacturers">
- <EntityTypeMapping TypeName="TreningDemoModel.Manufacturers">
- <MappingFragment StoreEntitySet="Manufacturers">
- <ScalarProperty Name="Id" ColumnName="Id" />
- <ScalarProperty Name="Name" ColumnName="Name" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Orders">
- <EntityTypeMapping TypeName="TreningDemoModel.Orders">
- <MappingFragment StoreEntitySet="Orders">
- <ScalarProperty Name="Id" ColumnName="Id" />
- <ScalarProperty Name="StatusId" ColumnName="StatusId" />
- <ScalarProperty Name="PointId" ColumnName="PointId" />
- <ScalarProperty Name="DeliveryDate" ColumnName="DeliveryDate" />
- <ScalarProperty Name="OrderDate" ColumnName="OrderDate" />
- <ScalarProperty Name="Code" ColumnName="Code" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Points">
- <EntityTypeMapping TypeName="TreningDemoModel.Points">
- <MappingFragment StoreEntitySet="Points">
- <ScalarProperty Name="Id" ColumnName="Id" />
- <ScalarProperty Name="IndexPoint" ColumnName="IndexPoint" />
- <ScalarProperty Name="City" ColumnName="City" />
- <ScalarProperty Name="Street" ColumnName="Street" />
- <ScalarProperty Name="Home" ColumnName="Home" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="ProductOrders">
- <EntityTypeMapping TypeName="TreningDemoModel.ProductOrders">
- <MappingFragment StoreEntitySet="ProductOrders">
- <ScalarProperty Name="Id" ColumnName="Id" />
- <ScalarProperty Name="OrderId" ColumnName="OrderId" />
- <ScalarProperty Name="ProductId" ColumnName="ProductId" />
- <ScalarProperty Name="Count" ColumnName="Count" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Products">
- <EntityTypeMapping TypeName="TreningDemoModel.Products">
- <MappingFragment StoreEntitySet="Products">
- <ScalarProperty Name="Id" ColumnName="Id" />
- <ScalarProperty Name="ProductName" ColumnName="ProductName" />
- <ScalarProperty Name="ProductDescription" ColumnName="ProductDescription" />
- <ScalarProperty Name="ManufacturerId" ColumnName="ManufacturerId" />
- <ScalarProperty Name="Price" ColumnName="Price" />
- <ScalarProperty Name="CountInStock" ColumnName="CountInStock" />
- <ScalarProperty Name="CountInShop" ColumnName="CountInShop" />
- <ScalarProperty Name="Description" ColumnName="Description" />
- <ScalarProperty Name="Photo" ColumnName="Photo" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Statuses">
- <EntityTypeMapping TypeName="TreningDemoModel.Statuses">
- <MappingFragment StoreEntitySet="Statuses">
- <ScalarProperty Name="Id" ColumnName="Id" />
- <ScalarProperty Name="Name" ColumnName="Name" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="sysdiagrams">
- <EntityTypeMapping TypeName="TreningDemoModel.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>
- </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>
|