12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- <?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="Хранилище Harina_LessonsModel" Provider="System.Data.SqlClient" ProviderManifestToken="2008" 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">
- <!--Ошибки, обнаруженные при создании:
- предупреждение 6002: В таблице или представлении "Harina_Lessons.dbo.User" не определен первичный ключ. Ключ был выведен, а определение таблицы или представления было создано в режиме только для чтения.-->
- <EntityType Name="User">
- <Key>
- <PropertyRef Name="Login" />
- <PropertyRef Name="Password" />
- <PropertyRef Name="Role" />
- <PropertyRef Name="FIO" />
- <PropertyRef Name="Photo" />
- </Key>
- <Property Name="Login" Type="nchar" MaxLength="10" Nullable="false" />
- <Property Name="Password" Type="nchar" MaxLength="10" Nullable="false" />
- <Property Name="Role" Type="nchar" MaxLength="10" Nullable="false" />
- <Property Name="FIO" Type="nchar" MaxLength="10" Nullable="false" />
- <Property Name="Photo" Type="varchar(max)" Nullable="false" />
- </EntityType>
- <EntityContainer Name="Хранилище Harina_LessonsModelContainer">
- <EntitySet Name="User" EntityType="Self.User" store:Type="Tables" store:Schema="dbo">
- <DefiningQuery>SELECT
- [User].[Login] AS [Login],
- [User].[Password] AS [Password],
- [User].[Role] AS [Role],
- [User].[FIO] AS [FIO],
- [User].[Photo] AS [Photo]
- FROM [dbo].[User] AS [User]</DefiningQuery>
- </EntitySet>
- </EntityContainer>
- </Schema>
- </edmx:StorageModels>
- <!-- CSDL content -->
- <edmx:ConceptualModels>
- <Schema Namespace="Harina_LessonsModel" 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="User">
- <Key>
- <PropertyRef Name="Login" />
- <PropertyRef Name="Password" />
- <PropertyRef Name="Role" />
- <PropertyRef Name="FIO" />
- <PropertyRef Name="Photo" />
- </Key>
- <Property Name="Login" Type="String" MaxLength="10" FixedLength="true" Unicode="true" Nullable="false" />
- <Property Name="Password" Type="String" MaxLength="10" FixedLength="true" Unicode="true" Nullable="false" />
- <Property Name="Role" Type="String" MaxLength="10" FixedLength="true" Unicode="true" Nullable="false" />
- <Property Name="FIO" Type="String" MaxLength="10" FixedLength="true" Unicode="true" Nullable="false" />
- <Property Name="Photo" Type="String" MaxLength="Max" FixedLength="false" Unicode="false" Nullable="false" />
- </EntityType>
- <EntityContainer Name="Harina_LessonsEntities" annotation:LazyLoadingEnabled="true">
- <EntitySet Name="User" EntityType="Self.User" />
- </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="Хранилище Harina_LessonsModelContainer" CdmEntityContainer="Harina_LessonsEntities">
- <EntitySetMapping Name="User">
- <EntityTypeMapping TypeName="Harina_LessonsModel.User">
- <MappingFragment StoreEntitySet="User">
- <ScalarProperty Name="Login" ColumnName="Login" />
- <ScalarProperty Name="Password" ColumnName="Password" />
- <ScalarProperty Name="Role" ColumnName="Role" />
- <ScalarProperty Name="FIO" ColumnName="FIO" />
- <ScalarProperty Name="Photo" ColumnName="Photo" />
- </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="true" />
- <DesignerProperty Name="CodeGenerationStrategy" Value="Нет" />
- </DesignerInfoPropertySet>
- </Options>
- <!-- Diagram content (shape and connector positions) -->
- <Diagrams></Diagrams>
- </Designer>
- </edmx:Edmx>
|