123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419 |
- <?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="Хранилище dealerModel" 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="cards">
- <Key>
- <PropertyRef Name="id_card" />
- </Key>
- <Property Name="id_card" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="id_product" Type="int" Nullable="false" />
- <Property Name="quanity" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="distributors">
- <Key>
- <PropertyRef Name="id_distributor" />
- </Key>
- <Property Name="id_distributor" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="distributor_name" Type="nvarchar(max)" Nullable="false" />
- <Property Name="TIN" Type="nvarchar" MaxLength="10" />
- <Property Name="BIC" Type="nvarchar" MaxLength="9" />
- <Property Name="address" Type="nvarchar(max)" />
- <Property Name="postal_code" Type="nvarchar" MaxLength="6" />
- <Property Name="phone" Type="nvarchar" MaxLength="11" />
- <Property Name="email" Type="nvarchar(max)" />
- </EntityType>
- <EntityType Name="employees">
- <Key>
- <PropertyRef Name="id_employee" />
- </Key>
- <Property Name="id_employee" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="last_name" Type="nvarchar(max)" Nullable="false" />
- <Property Name="first_name" Type="nvarchar(max)" Nullable="false" />
- <Property Name="middle_name" Type="nvarchar(max)" Nullable="false" />
- <Property Name="login" Type="nvarchar(max)" />
- <Property Name="password" Type="nvarchar(max)" />
- <Property Name="gender" Type="nvarchar" MaxLength="7" />
- <Property Name="birthdate" Type="date" />
- <Property Name="post" Type="nvarchar(max)" Nullable="false" />
- <Property Name="salary" Type="money" />
- <Property Name="phone" Type="nvarchar" MaxLength="11" />
- <Property Name="email" Type="nvarchar(max)" />
- <Property Name="address" Type="nvarchar(max)" />
- <Property Name="passport" Type="nvarchar(max)" Nullable="false" />
- </EntityType>
- <EntityType Name="invoices">
- <Key>
- <PropertyRef Name="id_invoice" />
- </Key>
- <Property Name="id_invoice" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="id_card" Type="int" Nullable="false" />
- <Property Name="id_employee" Type="int" Nullable="false" />
- <Property Name="invoice_type" Type="nvarchar(max)" Nullable="false" />
- <Property Name="date_composition" Type="date" Nullable="false" />
- </EntityType>
- <EntityType Name="products">
- <Key>
- <PropertyRef Name="id_product" />
- </Key>
- <Property Name="id_product" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="id_distributor" Type="int" />
- <Property Name="product_name" Type="nvarchar(max)" Nullable="false" />
- <Property Name="product_type" Type="nvarchar(max)" Nullable="false" />
- <Property Name="production_date" Type="date" Nullable="false" />
- <Property Name="warranty" Type="nvarchar" MaxLength="20" Nullable="false" />
- <Property Name="wholesale_price" Type="money" />
- <Property Name="retail_price" Type="money" />
- </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__cards__id_produc__29572725">
- <End Role="products" Type="Self.products" Multiplicity="1" />
- <End Role="cards" Type="Self.cards" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="products">
- <PropertyRef Name="id_product" />
- </Principal>
- <Dependent Role="cards">
- <PropertyRef Name="id_product" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__invoices__id_car__2E1BDC42">
- <End Role="cards" Type="Self.cards" Multiplicity="1" />
- <End Role="invoices" Type="Self.invoices" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="cards">
- <PropertyRef Name="id_card" />
- </Principal>
- <Dependent Role="invoices">
- <PropertyRef Name="id_card" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__invoices__id_emp__2F10007B">
- <End Role="employees" Type="Self.employees" Multiplicity="1" />
- <End Role="invoices" Type="Self.invoices" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="employees">
- <PropertyRef Name="id_employee" />
- </Principal>
- <Dependent Role="invoices">
- <PropertyRef Name="id_employee" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__products__id_dis__267ABA7A">
- <End Role="distributors" Type="Self.distributors" Multiplicity="0..1" />
- <End Role="products" Type="Self.products" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="distributors">
- <PropertyRef Name="id_distributor" />
- </Principal>
- <Dependent Role="products">
- <PropertyRef Name="id_distributor" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="Хранилище dealerModelContainer">
- <EntitySet Name="cards" EntityType="Self.cards" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="distributors" EntityType="Self.distributors" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="employees" EntityType="Self.employees" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="invoices" EntityType="Self.invoices" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="products" EntityType="Self.products" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" Schema="dbo" store:Type="Tables" />
- <AssociationSet Name="FK__cards__id_produc__29572725" Association="Self.FK__cards__id_produc__29572725">
- <End Role="products" EntitySet="products" />
- <End Role="cards" EntitySet="cards" />
- </AssociationSet>
- <AssociationSet Name="FK__invoices__id_car__2E1BDC42" Association="Self.FK__invoices__id_car__2E1BDC42">
- <End Role="cards" EntitySet="cards" />
- <End Role="invoices" EntitySet="invoices" />
- </AssociationSet>
- <AssociationSet Name="FK__invoices__id_emp__2F10007B" Association="Self.FK__invoices__id_emp__2F10007B">
- <End Role="employees" EntitySet="employees" />
- <End Role="invoices" EntitySet="invoices" />
- </AssociationSet>
- <AssociationSet Name="FK__products__id_dis__267ABA7A" Association="Self.FK__products__id_dis__267ABA7A">
- <End Role="distributors" EntitySet="distributors" />
- <End Role="products" EntitySet="products" />
- </AssociationSet>
- </EntityContainer>
- </Schema>
- </edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="dealerModel" 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="cards">
- <Key>
- <PropertyRef Name="id_card" />
- </Key>
- <Property Name="id_card" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="id_product" Type="Int32" Nullable="false" />
- <Property Name="quanity" Type="Int32" Nullable="false" />
- <NavigationProperty Name="products" Relationship="Self.FK__cards__id_produc__29572725" FromRole="cards" ToRole="products" />
- <NavigationProperty Name="invoices" Relationship="Self.FK__invoices__id_car__2E1BDC42" FromRole="cards" ToRole="invoices" />
- </EntityType>
- <EntityType Name="distributors">
- <Key>
- <PropertyRef Name="id_distributor" />
- </Key>
- <Property Name="id_distributor" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="distributor_name" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="TIN" Type="String" MaxLength="10" FixedLength="false" Unicode="true" />
- <Property Name="BIC" Type="String" MaxLength="9" FixedLength="false" Unicode="true" />
- <Property Name="address" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="postal_code" Type="String" MaxLength="6" FixedLength="false" Unicode="true" />
- <Property Name="phone" Type="String" MaxLength="11" FixedLength="false" Unicode="true" />
- <Property Name="email" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <NavigationProperty Name="products" Relationship="Self.FK__products__id_dis__267ABA7A" FromRole="distributors" ToRole="products" />
- </EntityType>
- <EntityType Name="employees">
- <Key>
- <PropertyRef Name="id_employee" />
- </Key>
- <Property Name="id_employee" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="last_name" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="first_name" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="middle_name" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="login" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="password" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="gender" Type="String" MaxLength="7" FixedLength="false" Unicode="true" />
- <Property Name="birthdate" Type="DateTime" Precision="0" />
- <Property Name="post" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="salary" Type="Decimal" Precision="19" Scale="4" />
- <Property Name="phone" Type="String" MaxLength="11" FixedLength="false" Unicode="true" />
- <Property Name="email" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="address" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" />
- <Property Name="passport" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <NavigationProperty Name="invoices" Relationship="Self.FK__invoices__id_emp__2F10007B" FromRole="employees" ToRole="invoices" />
- </EntityType>
- <EntityType Name="invoices">
- <Key>
- <PropertyRef Name="id_invoice" />
- </Key>
- <Property Name="id_invoice" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="id_card" Type="Int32" Nullable="false" />
- <Property Name="id_employee" Type="Int32" Nullable="false" />
- <Property Name="invoice_type" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="date_composition" Type="DateTime" Nullable="false" Precision="0" />
- <NavigationProperty Name="cards" Relationship="Self.FK__invoices__id_car__2E1BDC42" FromRole="invoices" ToRole="cards" />
- <NavigationProperty Name="employees" Relationship="Self.FK__invoices__id_emp__2F10007B" FromRole="invoices" ToRole="employees" />
- </EntityType>
- <EntityType Name="products">
- <Key>
- <PropertyRef Name="id_product" />
- </Key>
- <Property Name="id_product" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="id_distributor" Type="Int32" />
- <Property Name="product_name" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="product_type" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="production_date" Type="DateTime" Nullable="false" Precision="0" />
- <Property Name="warranty" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="wholesale_price" Type="Decimal" Precision="19" Scale="4" />
- <Property Name="retail_price" Type="Decimal" Precision="19" Scale="4" />
- <NavigationProperty Name="cards" Relationship="Self.FK__cards__id_produc__29572725" FromRole="products" ToRole="cards" />
- <NavigationProperty Name="distributors" Relationship="Self.FK__products__id_dis__267ABA7A" FromRole="products" ToRole="distributors" />
- </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__cards__id_produc__29572725">
- <End Role="products" Type="Self.products" Multiplicity="1" />
- <End Role="cards" Type="Self.cards" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="products">
- <PropertyRef Name="id_product" />
- </Principal>
- <Dependent Role="cards">
- <PropertyRef Name="id_product" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__invoices__id_car__2E1BDC42">
- <End Role="cards" Type="Self.cards" Multiplicity="1" />
- <End Role="invoices" Type="Self.invoices" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="cards">
- <PropertyRef Name="id_card" />
- </Principal>
- <Dependent Role="invoices">
- <PropertyRef Name="id_card" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__products__id_dis__267ABA7A">
- <End Role="distributors" Type="Self.distributors" Multiplicity="0..1" />
- <End Role="products" Type="Self.products" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="distributors">
- <PropertyRef Name="id_distributor" />
- </Principal>
- <Dependent Role="products">
- <PropertyRef Name="id_distributor" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK__invoices__id_emp__2F10007B">
- <End Role="employees" Type="Self.employees" Multiplicity="1" />
- <End Role="invoices" Type="Self.invoices" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="employees">
- <PropertyRef Name="id_employee" />
- </Principal>
- <Dependent Role="invoices">
- <PropertyRef Name="id_employee" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="dealerEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="cards" EntityType="Self.cards" />
- <EntitySet Name="distributors" EntityType="Self.distributors" />
- <EntitySet Name="employees" EntityType="Self.employees" />
- <EntitySet Name="invoices" EntityType="Self.invoices" />
- <EntitySet Name="products" EntityType="Self.products" />
- <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" />
- <AssociationSet Name="FK__cards__id_produc__29572725" Association="Self.FK__cards__id_produc__29572725">
- <End Role="products" EntitySet="products" />
- <End Role="cards" EntitySet="cards" />
- </AssociationSet>
- <AssociationSet Name="FK__invoices__id_car__2E1BDC42" Association="Self.FK__invoices__id_car__2E1BDC42">
- <End Role="cards" EntitySet="cards" />
- <End Role="invoices" EntitySet="invoices" />
- </AssociationSet>
- <AssociationSet Name="FK__products__id_dis__267ABA7A" Association="Self.FK__products__id_dis__267ABA7A">
- <End Role="distributors" EntitySet="distributors" />
- <End Role="products" EntitySet="products" />
- </AssociationSet>
- <AssociationSet Name="FK__invoices__id_emp__2F10007B" Association="Self.FK__invoices__id_emp__2F10007B">
- <End Role="employees" EntitySet="employees" />
- <End Role="invoices" EntitySet="invoices" />
- </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="Хранилище dealerModelContainer" CdmEntityContainer="dealerEntities">
- <EntitySetMapping Name="cards">
- <EntityTypeMapping TypeName="dealerModel.cards">
- <MappingFragment StoreEntitySet="cards">
- <ScalarProperty Name="id_card" ColumnName="id_card" />
- <ScalarProperty Name="id_product" ColumnName="id_product" />
- <ScalarProperty Name="quanity" ColumnName="quanity" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="distributors">
- <EntityTypeMapping TypeName="dealerModel.distributors">
- <MappingFragment StoreEntitySet="distributors">
- <ScalarProperty Name="id_distributor" ColumnName="id_distributor" />
- <ScalarProperty Name="distributor_name" ColumnName="distributor_name" />
- <ScalarProperty Name="TIN" ColumnName="TIN" />
- <ScalarProperty Name="BIC" ColumnName="BIC" />
- <ScalarProperty Name="address" ColumnName="address" />
- <ScalarProperty Name="postal_code" ColumnName="postal_code" />
- <ScalarProperty Name="phone" ColumnName="phone" />
- <ScalarProperty Name="email" ColumnName="email" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="employees">
- <EntityTypeMapping TypeName="dealerModel.employees">
- <MappingFragment StoreEntitySet="employees">
- <ScalarProperty Name="id_employee" ColumnName="id_employee" />
- <ScalarProperty Name="last_name" ColumnName="last_name" />
- <ScalarProperty Name="first_name" ColumnName="first_name" />
- <ScalarProperty Name="middle_name" ColumnName="middle_name" />
- <ScalarProperty Name="login" ColumnName="login" />
- <ScalarProperty Name="password" ColumnName="password" />
- <ScalarProperty Name="gender" ColumnName="gender" />
- <ScalarProperty Name="birthdate" ColumnName="birthdate" />
- <ScalarProperty Name="post" ColumnName="post" />
- <ScalarProperty Name="salary" ColumnName="salary" />
- <ScalarProperty Name="phone" ColumnName="phone" />
- <ScalarProperty Name="email" ColumnName="email" />
- <ScalarProperty Name="address" ColumnName="address" />
- <ScalarProperty Name="passport" ColumnName="passport" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="invoices">
- <EntityTypeMapping TypeName="dealerModel.invoices">
- <MappingFragment StoreEntitySet="invoices">
- <ScalarProperty Name="id_invoice" ColumnName="id_invoice" />
- <ScalarProperty Name="id_card" ColumnName="id_card" />
- <ScalarProperty Name="id_employee" ColumnName="id_employee" />
- <ScalarProperty Name="invoice_type" ColumnName="invoice_type" />
- <ScalarProperty Name="date_composition" ColumnName="date_composition" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="products">
- <EntityTypeMapping TypeName="dealerModel.products">
- <MappingFragment StoreEntitySet="products">
- <ScalarProperty Name="id_product" ColumnName="id_product" />
- <ScalarProperty Name="id_distributor" ColumnName="id_distributor" />
- <ScalarProperty Name="product_name" ColumnName="product_name" />
- <ScalarProperty Name="product_type" ColumnName="product_type" />
- <ScalarProperty Name="production_date" ColumnName="production_date" />
- <ScalarProperty Name="warranty" ColumnName="warranty" />
- <ScalarProperty Name="wholesale_price" ColumnName="wholesale_price" />
- <ScalarProperty Name="retail_price" ColumnName="retail_price" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="sysdiagrams">
- <EntityTypeMapping TypeName="dealerModel.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>
|