123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?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="Хранилище gr692_pavModel" 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="auth">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="auth_login" Type="nvarchar" MaxLength="50" />
- <Property Name="auth_password" Type="nvarchar" MaxLength="50" />
- </EntityType>
- <EntityType Name="inventory">
- <Key>
- <PropertyRef Name="id_inventory" />
- </Key>
- <Property Name="id_inventory" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
- <Property Name="inventory_name" Type="nvarchar(max)" Nullable="false" />
- <Property Name="inventory_type" Type="nvarchar(max)" Nullable="false" />
- </EntityType>
- <Function Name="AddInventory" Aggregate="false" BuiltIn="false" NiladicFunction="false" IsComposable="false" ParameterTypeSemantics="AllowImplicitConversion" Schema="dbo">
- <Parameter Name="name" Type="nvarchar(max)" Mode="In" />
- <Parameter Name="type" Type="nvarchar(max)" Mode="In" />
- </Function>
- <EntityContainer Name="Хранилище gr692_pavModelContainer">
- <EntitySet Name="auth" EntityType="Self.auth" Schema="dbo" store:Type="Tables" />
- <EntitySet Name="inventory" EntityType="Self.inventory" Schema="dbo" store:Type="Tables" />
- </EntityContainer>
- </Schema>
- </edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="gr692_pavModel" 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="auth">
- <Key>
- <PropertyRef Name="Id" />
- </Key>
- <Property Name="Id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="auth_login" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
- <Property Name="auth_password" Type="String" MaxLength="50" FixedLength="false" Unicode="true" />
- </EntityType>
- <EntityType Name="inventory">
- <Key>
- <PropertyRef Name="id_inventory" />
- </Key>
- <Property Name="id_inventory" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
- <Property Name="inventory_name" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- <Property Name="inventory_type" Type="String" MaxLength="Max" FixedLength="false" Unicode="true" Nullable="false" />
- </EntityType>
- <EntityContainer Name="gr692_pavEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="auth" EntityType="Self.auth" />
- <EntitySet Name="inventory" EntityType="Self.inventory" />
- <FunctionImport Name="AddInventory">
- <Parameter Name="name" Mode="In" Type="String" />
- <Parameter Name="type" Mode="In" Type="String" />
- </FunctionImport>
- </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="Хранилище gr692_pavModelContainer" CdmEntityContainer="gr692_pavEntities">
- <EntitySetMapping Name="auth">
- <EntityTypeMapping TypeName="gr692_pavModel.auth">
- <MappingFragment StoreEntitySet="auth">
- <ScalarProperty Name="Id" ColumnName="Id" />
- <ScalarProperty Name="auth_login" ColumnName="auth_login" />
- <ScalarProperty Name="auth_password" ColumnName="auth_password" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <EntitySetMapping Name="inventory">
- <EntityTypeMapping TypeName="gr692_pavModel.inventory">
- <MappingFragment StoreEntitySet="inventory">
- <ScalarProperty Name="id_inventory" ColumnName="id_inventory" />
- <ScalarProperty Name="inventory_name" ColumnName="inventory_name" />
- <ScalarProperty Name="inventory_type" ColumnName="inventory_type" />
- </MappingFragment>
- </EntityTypeMapping>
- </EntitySetMapping>
- <FunctionImportMapping FunctionImportName="AddInventory" FunctionName="Хранилище gr692_pavModel.AddInventory" />
- </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>
|