123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463 |
- <?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="Хранилище Model" 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="Brand">
- <Key>
- <PropertyRef Name="id_Brand" />
- </Key>
- <Property Name="id_Brand" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="Label" Type="varchar" MaxLength="50" Nullable="false" />
- <Property Name="Country_of_origin" Type="varchar" MaxLength="50" Nullable="false" />
- </EntityType>
- <EntityType Name="Cheque">
- <Key>
- <PropertyRef Name="id_Cheque" />
- </Key>
- <Property Name="id_Cheque" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="Date_of_formation" Type="date" Nullable="false" />
- </EntityType>
- <EntityType Name="Components_of_Cheque">
- <Key>
- <PropertyRef Name="id_Components_of_the_cheque" />
- </Key>
- <Property Name="id_Components_of_the_cheque" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="id_Cheque" Type="int" Nullable="false" />
- <Property Name="id_Sneakers" Type="int" Nullable="false" />
- <Property Name="Quantity" Type="varchar" MaxLength="50" Nullable="false" />
- <Property Name="id_Users" Type="int" Nullable="false" />
- </EntityType>
- <EntityType Name="Gender">
- <Key>
- <PropertyRef Name="id_Gender" />
- </Key>
- <Property Name="id_Gender" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="Gender" Type="varchar" MaxLength="50" />
- </EntityType>
- <EntityType Name="Role">
- <Key>
- <PropertyRef Name="id_Role" />
- </Key>
- <Property Name="id_Role" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="Role" Type="varchar" MaxLength="50" />
- </EntityType>
- <EntityType Name="Sneakers">
- <Key>
- <PropertyRef Name="id_Sneakers" />
- </Key>
- <Property Name="id_Sneakers" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="id_Brand" Type="int" Nullable="false" />
- <Property Name="Colors" Type="varchar" MaxLength="50" Nullable="false" />
- <Property Name="Price" Type="money" Nullable="false" />
- <Property Name="Model" Type="varchar" MaxLength="50" Nullable="false" />
- <Property Name="Size" Type="varchar" MaxLength="50" Nullable="false" />
- </EntityType>
- <EntityType Name="Users">
- <Key>
- <PropertyRef Name="id_Users" />
- </Key>
- <Property Name="id_Users" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="id_Gender" Type="int" />
- <Property Name="id_Role" Type="int" />
- <Property Name="Surname" Type="varchar" MaxLength="50" />
- <Property Name="Name" Type="varchar" MaxLength="50" />
- <Property Name="Patronymic" Type="varchar" MaxLength="50" />
- <Property Name="Login" Type="varchar" MaxLength="50" />
- <Property Name="Password" Type="varchar" MaxLength="256" />
- <Property Name="DateBirth" Type="date" />
- </EntityType>
- <Association Name="FK_Components_of_Cheque_Cheque">
- <End Role="Cheque" Type="Self.Cheque" Multiplicity="1" />
- <End Role="Components_of_Cheque" Type="Self.Components_of_Cheque" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Cheque">
- <PropertyRef Name="id_Cheque" />
- </Principal>
- <Dependent Role="Components_of_Cheque">
- <PropertyRef Name="id_Cheque" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Components_of_Cheque_Sneakers">
- <End Role="Sneakers" Type="Self.Sneakers" Multiplicity="1" />
- <End Role="Components_of_Cheque" Type="Self.Components_of_Cheque" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Sneakers">
- <PropertyRef Name="id_Sneakers" />
- </Principal>
- <Dependent Role="Components_of_Cheque">
- <PropertyRef Name="id_Sneakers" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Components_of_Cheque_Users">
- <End Role="Users" Type="Self.Users" Multiplicity="1" />
- <End Role="Components_of_Cheque" Type="Self.Components_of_Cheque" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Users">
- <PropertyRef Name="id_Users" />
- </Principal>
- <Dependent Role="Components_of_Cheque">
- <PropertyRef Name="id_Users" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Sneakers_Brand">
- <End Role="Brand" Type="Self.Brand" Multiplicity="1" />
- <End Role="Sneakers" Type="Self.Sneakers" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Brand">
- <PropertyRef Name="id_Brand" />
- </Principal>
- <Dependent Role="Sneakers">
- <PropertyRef Name="id_Brand" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Users_Gender">
- <End Role="Gender" Type="Self.Gender" Multiplicity="0..1" />
- <End Role="Users" Type="Self.Users" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Gender">
- <PropertyRef Name="id_Gender" />
- </Principal>
- <Dependent Role="Users">
- <PropertyRef Name="id_Gender" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Users_Role">
- <End Role="Role" Type="Self.Role" Multiplicity="0..1" />
- <End Role="Users" Type="Self.Users" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Role">
- <PropertyRef Name="id_Role" />
- </Principal>
- <Dependent Role="Users">
- <PropertyRef Name="id_Role" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="Хранилище ModelContainer">
- <EntitySet Name="Brand" EntityType="Self.Brand" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Cheque" EntityType="Self.Cheque" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Components_of_Cheque" EntityType="Self.Components_of_Cheque" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Gender" EntityType="Self.Gender" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Role" EntityType="Self.Role" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Sneakers" EntityType="Self.Sneakers" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="Users" EntityType="Self.Users" Schema="dbo" store:Type="Tables" />
- <AssociationSet Name="FK_Components_of_Cheque_Cheque" Association="Self.FK_Components_of_Cheque_Cheque">
- <End Role="Cheque" EntitySet="Cheque" />
- <End Role="Components_of_Cheque" EntitySet="Components_of_Cheque" />
- </AssociationSet>
- <AssociationSet Name="FK_Components_of_Cheque_Sneakers" Association="Self.FK_Components_of_Cheque_Sneakers">
- <End Role="Sneakers" EntitySet="Sneakers" />
- <End Role="Components_of_Cheque" EntitySet="Components_of_Cheque" />
- </AssociationSet>
- <AssociationSet Name="FK_Components_of_Cheque_Users" Association="Self.FK_Components_of_Cheque_Users">
- <End Role="Users" EntitySet="Users" />
- <End Role="Components_of_Cheque" EntitySet="Components_of_Cheque" />
- </AssociationSet>
- <AssociationSet Name="FK_Sneakers_Brand" Association="Self.FK_Sneakers_Brand">
- <End Role="Brand" EntitySet="Brand" />
- <End Role="Sneakers" EntitySet="Sneakers" />
- </AssociationSet>
- <AssociationSet Name="FK_Users_Gender" Association="Self.FK_Users_Gender">
- <End Role="Gender" EntitySet="Gender" />
- <End Role="Users" EntitySet="Users" />
- </AssociationSet>
- <AssociationSet Name="FK_Users_Role" Association="Self.FK_Users_Role">
- <End Role="Role" EntitySet="Role" />
- <End Role="Users" EntitySet="Users" />
- </AssociationSet>
- </EntityContainer>
- </Schema>
- </edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="Model" 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="Brand">
- <Key>
- <PropertyRef Name="id_Brand" />
- </Key>
- <Property Name="id_Brand" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Label" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
- <Property Name="Country_of_origin" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
- <NavigationProperty Name="Sneakers" Relationship="Self.FK_Sneakers_Brand" FromRole="Brand" ToRole="Sneakers" />
- </EntityType>
- <EntityType Name="Cheque">
- <Key>
- <PropertyRef Name="id_Cheque" />
- </Key>
- <Property Name="id_Cheque" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Date_of_formation" Type="DateTime" Nullable="false" Precision="0" />
- <NavigationProperty Name="Components_of_Cheque" Relationship="Self.FK_Components_of_Cheque_Cheque" FromRole="Cheque" ToRole="Components_of_Cheque" />
- </EntityType>
- <EntityType Name="Components_of_Cheque">
- <Key>
- <PropertyRef Name="id_Components_of_the_cheque" />
- </Key>
- <Property Name="id_Components_of_the_cheque" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="id_Cheque" Type="Int32" Nullable="false" />
- <Property Name="id_Sneakers" Type="Int32" Nullable="false" />
- <Property Name="Quantity" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
- <Property Name="id_Users" Type="Int32" Nullable="false" />
- <NavigationProperty Name="Cheque" Relationship="Self.FK_Components_of_Cheque_Cheque" FromRole="Components_of_Cheque" ToRole="Cheque" />
- <NavigationProperty Name="Sneakers" Relationship="Self.FK_Components_of_Cheque_Sneakers" FromRole="Components_of_Cheque" ToRole="Sneakers" />
- <NavigationProperty Name="Users" Relationship="Self.FK_Components_of_Cheque_Users" FromRole="Components_of_Cheque" ToRole="Users" />
- </EntityType>
- <EntityType Name="Gender">
- <Key>
- <PropertyRef Name="id_Gender" />
- </Key>
- <Property Name="id_Gender" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Gender1" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
- <NavigationProperty Name="Users" Relationship="Self.FK_Users_Gender" FromRole="Gender" ToRole="Users" />
- </EntityType>
- <EntityType Name="Role">
- <Key>
- <PropertyRef Name="id_Role" />
- </Key>
- <Property Name="id_Role" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="Role1" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
- <NavigationProperty Name="Users" Relationship="Self.FK_Users_Role" FromRole="Role" ToRole="Users" />
- </EntityType>
- <EntityType Name="Sneakers">
- <Key>
- <PropertyRef Name="id_Sneakers" />
- </Key>
- <Property Name="id_Sneakers" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="id_Brand" Type="Int32" Nullable="false" />
- <Property Name="Colors" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
- <Property Name="Price" Type="Decimal" Precision="19" Scale="4" Nullable="false" />
- <Property Name="Model" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
- <Property Name="Size" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
- <NavigationProperty Name="Brand" Relationship="Self.FK_Sneakers_Brand" FromRole="Sneakers" ToRole="Brand" />
- <NavigationProperty Name="Components_of_Cheque" Relationship="Self.FK_Components_of_Cheque_Sneakers" FromRole="Sneakers" ToRole="Components_of_Cheque" />
- </EntityType>
- <EntityType Name="Users">
- <Key>
- <PropertyRef Name="id_Users" />
- </Key>
- <Property Name="id_Users" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="id_Gender" Type="Int32" />
- <Property Name="id_Role" Type="Int32" />
- <Property Name="Surname" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
- <Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
- <Property Name="Patronymic" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
- <Property Name="Login" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
- <Property Name="Password" Type="String" MaxLength="256" FixedLength="false" Unicode="false" />
- <Property Name="DateBirth" Type="DateTime" Precision="0" />
- <NavigationProperty Name="Components_of_Cheque" Relationship="Self.FK_Components_of_Cheque_Users" FromRole="Users" ToRole="Components_of_Cheque" />
- <NavigationProperty Name="Gender" Relationship="Self.FK_Users_Gender" FromRole="Users" ToRole="Gender" />
- <NavigationProperty Name="Role" Relationship="Self.FK_Users_Role" FromRole="Users" ToRole="Role" />
- </EntityType>
- <Association Name="FK_Sneakers_Brand">
- <End Role="Brand" Type="Self.Brand" Multiplicity="1" />
- <End Role="Sneakers" Type="Self.Sneakers" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Brand">
- <PropertyRef Name="id_Brand" />
- </Principal>
- <Dependent Role="Sneakers">
- <PropertyRef Name="id_Brand" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Components_of_Cheque_Cheque">
- <End Role="Cheque" Type="Self.Cheque" Multiplicity="1" />
- <End Role="Components_of_Cheque" Type="Self.Components_of_Cheque" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Cheque">
- <PropertyRef Name="id_Cheque" />
- </Principal>
- <Dependent Role="Components_of_Cheque">
- <PropertyRef Name="id_Cheque" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Components_of_Cheque_Sneakers">
- <End Role="Sneakers" Type="Self.Sneakers" Multiplicity="1" />
- <End Role="Components_of_Cheque" Type="Self.Components_of_Cheque" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Sneakers">
- <PropertyRef Name="id_Sneakers" />
- </Principal>
- <Dependent Role="Components_of_Cheque">
- <PropertyRef Name="id_Sneakers" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Components_of_Cheque_Users">
- <End Role="Users" Type="Self.Users" Multiplicity="1" />
- <End Role="Components_of_Cheque" Type="Self.Components_of_Cheque" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Users">
- <PropertyRef Name="id_Users" />
- </Principal>
- <Dependent Role="Components_of_Cheque">
- <PropertyRef Name="id_Users" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Users_Gender">
- <End Role="Gender" Type="Self.Gender" Multiplicity="0..1" />
- <End Role="Users" Type="Self.Users" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Gender">
- <PropertyRef Name="id_Gender" />
- </Principal>
- <Dependent Role="Users">
- <PropertyRef Name="id_Gender" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <Association Name="FK_Users_Role">
- <End Role="Role" Type="Self.Role" Multiplicity="0..1" />
- <End Role="Users" Type="Self.Users" Multiplicity="*" />
- <ReferentialConstraint>
- <Principal Role="Role">
- <PropertyRef Name="id_Role" />
- </Principal>
- <Dependent Role="Users">
- <PropertyRef Name="id_Role" />
- </Dependent>
- </ReferentialConstraint>
- </Association>
- <EntityContainer Name="Sniker" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="Brand" EntityType="Self.Brand" />
- <EntitySet Name="Cheque" EntityType="Self.Cheque" />
- <EntitySet Name="Components_of_Cheque" EntityType="Self.Components_of_Cheque" />
- <EntitySet Name="Gender" EntityType="Self.Gender" />
- <EntitySet Name="Role" EntityType="Self.Role" />
- <EntitySet Name="Sneakers" EntityType="Self.Sneakers" />
- <EntitySet Name="Users" EntityType="Self.Users" />
- <AssociationSet Name="FK_Sneakers_Brand" Association="Self.FK_Sneakers_Brand">
- <End Role="Brand" EntitySet="Brand" />
- <End Role="Sneakers" EntitySet="Sneakers" />
- </AssociationSet>
- <AssociationSet Name="FK_Components_of_Cheque_Cheque" Association="Self.FK_Components_of_Cheque_Cheque">
- <End Role="Cheque" EntitySet="Cheque" />
- <End Role="Components_of_Cheque" EntitySet="Components_of_Cheque" />
- </AssociationSet>
- <AssociationSet Name="FK_Components_of_Cheque_Sneakers" Association="Self.FK_Components_of_Cheque_Sneakers">
- <End Role="Sneakers" EntitySet="Sneakers" />
- <End Role="Components_of_Cheque" EntitySet="Components_of_Cheque" />
- </AssociationSet>
- <AssociationSet Name="FK_Components_of_Cheque_Users" Association="Self.FK_Components_of_Cheque_Users">
- <End Role="Users" EntitySet="Users" />
- <End Role="Components_of_Cheque" EntitySet="Components_of_Cheque" />
- </AssociationSet>
- <AssociationSet Name="FK_Users_Gender" Association="Self.FK_Users_Gender">
- <End Role="Gender" EntitySet="Gender" />
- <End Role="Users" EntitySet="Users" />
- </AssociationSet>
- <AssociationSet Name="FK_Users_Role" Association="Self.FK_Users_Role">
- <End Role="Role" EntitySet="Role" />
- <End Role="Users" EntitySet="Users" />
- </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="Хранилище ModelContainer" CdmEntityContainer="Sniker">
- <EntitySetMapping Name="Brand">
- <EntityTypeMapping TypeName="Model.Brand">
- <MappingFragment StoreEntitySet="Brand">
- <ScalarProperty Name="id_Brand" ColumnName="id_Brand" />
- <ScalarProperty Name="Label" ColumnName="Label" />
- <ScalarProperty Name="Country_of_origin" ColumnName="Country_of_origin" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Cheque">
- <EntityTypeMapping TypeName="Model.Cheque">
- <MappingFragment StoreEntitySet="Cheque">
- <ScalarProperty Name="id_Cheque" ColumnName="id_Cheque" />
- <ScalarProperty Name="Date_of_formation" ColumnName="Date_of_formation" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Components_of_Cheque">
- <EntityTypeMapping TypeName="Model.Components_of_Cheque">
- <MappingFragment StoreEntitySet="Components_of_Cheque">
- <ScalarProperty Name="id_Components_of_the_cheque" ColumnName="id_Components_of_the_cheque" />
- <ScalarProperty Name="id_Cheque" ColumnName="id_Cheque" />
- <ScalarProperty Name="id_Sneakers" ColumnName="id_Sneakers" />
- <ScalarProperty Name="Quantity" ColumnName="Quantity" />
- <ScalarProperty Name="id_Users" ColumnName="id_Users" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Gender">
- <EntityTypeMapping TypeName="Model.Gender">
- <MappingFragment StoreEntitySet="Gender">
- <ScalarProperty Name="id_Gender" ColumnName="id_Gender" />
- <ScalarProperty Name="Gender1" ColumnName="Gender" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Role">
- <EntityTypeMapping TypeName="Model.Role">
- <MappingFragment StoreEntitySet="Role">
- <ScalarProperty Name="id_Role" ColumnName="id_Role" />
- <ScalarProperty Name="Role1" ColumnName="Role" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Sneakers">
- <EntityTypeMapping TypeName="Model.Sneakers">
- <MappingFragment StoreEntitySet="Sneakers">
- <ScalarProperty Name="id_Sneakers" ColumnName="id_Sneakers" />
- <ScalarProperty Name="id_Brand" ColumnName="id_Brand" />
- <ScalarProperty Name="Colors" ColumnName="Colors" />
- <ScalarProperty Name="Price" ColumnName="Price" />
- <ScalarProperty Name="Model" ColumnName="Model" />
- <ScalarProperty Name="Size" ColumnName="Size" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="Users">
- <EntityTypeMapping TypeName="Model.Users">
- <MappingFragment StoreEntitySet="Users">
- <ScalarProperty Name="id_Users" ColumnName="id_Users" />
- <ScalarProperty Name="id_Gender" ColumnName="id_Gender" />
- <ScalarProperty Name="id_Role" ColumnName="id_Role" />
- <ScalarProperty Name="Surname" ColumnName="Surname" />
- <ScalarProperty Name="Name" ColumnName="Name" />
- <ScalarProperty Name="Patronymic" ColumnName="Patronymic" />
- <ScalarProperty Name="Login" ColumnName="Login" />
- <ScalarProperty Name="Password" ColumnName="Password" />
- <ScalarProperty Name="DateBirth" ColumnName="DateBirth" />
- </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>
|