Model1.edmx 4.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
  3. <!-- EF Runtime content -->
  4. <edmx:Runtime>
  5. <!-- SSDL content -->
  6. <edmx:StorageModels>
  7. <Schema Namespace="Хранилище gr601_mikanModel" 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">
  8. <EntityType Name="User">
  9. <Key>
  10. <PropertyRef Name="id" />
  11. </Key>
  12. <Property Name="id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
  13. <Property Name="Login" Type="nchar" MaxLength="50" Nullable="false" />
  14. <Property Name="Password" Type="nchar" MaxLength="50" Nullable="false" />
  15. <Property Name="LastName" Type="nchar" MaxLength="50" Nullable="false" />
  16. <Property Name="FirstName" Type="nchar" MaxLength="50" Nullable="false" />
  17. <Property Name="MiddliName" Type="nchar" MaxLength="50" />
  18. <Property Name="Email" Type="nchar" MaxLength="50" Nullable="false" />
  19. </EntityType>
  20. <EntityContainer Name="Хранилище gr601_mikanModelContainer">
  21. <EntitySet Name="User" EntityType="Self.User" Schema="dbo" store:Type="Tables" />
  22. </EntityContainer>
  23. </Schema>
  24. </edmx:StorageModels>
  25. <!-- CSDL content -->
  26. <edmx:ConceptualModels>
  27. <Schema Namespace="gr601_mikanModel" 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">
  28. <EntityType Name="User">
  29. <Key>
  30. <PropertyRef Name="id" />
  31. </Key>
  32. <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
  33. <Property Name="Login" Type="String" MaxLength="50" FixedLength="true" Unicode="true" Nullable="false" />
  34. <Property Name="Password" Type="String" MaxLength="50" FixedLength="true" Unicode="true" Nullable="false" />
  35. <Property Name="LastName" Type="String" MaxLength="50" FixedLength="true" Unicode="true" Nullable="false" />
  36. <Property Name="FirstName" Type="String" MaxLength="50" FixedLength="true" Unicode="true" Nullable="false" />
  37. <Property Name="MiddliName" Type="String" MaxLength="50" FixedLength="true" Unicode="true" />
  38. <Property Name="Email" Type="String" MaxLength="50" FixedLength="true" Unicode="true" Nullable="false" />
  39. </EntityType>
  40. <EntityContainer Name="gr601_mikanEntities" annotation:LazyLoadingEnabled="true">
  41. <EntitySet Name="User" EntityType="Self.User" />
  42. </EntityContainer>
  43. </Schema>
  44. </edmx:ConceptualModels>
  45. <!-- C-S mapping content -->
  46. <edmx:Mappings>
  47. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  48. <EntityContainerMapping StorageEntityContainer="Хранилище gr601_mikanModelContainer" CdmEntityContainer="gr601_mikanEntities">
  49. <EntitySetMapping Name="User">
  50. <EntityTypeMapping TypeName="gr601_mikanModel.User">
  51. <MappingFragment StoreEntitySet="User">
  52. <ScalarProperty Name="id" ColumnName="id" />
  53. <ScalarProperty Name="Login" ColumnName="Login" />
  54. <ScalarProperty Name="Password" ColumnName="Password" />
  55. <ScalarProperty Name="LastName" ColumnName="LastName" />
  56. <ScalarProperty Name="FirstName" ColumnName="FirstName" />
  57. <ScalarProperty Name="MiddliName" ColumnName="MiddliName" />
  58. <ScalarProperty Name="Email" ColumnName="Email" />
  59. </MappingFragment>
  60. </EntityTypeMapping>
  61. </EntitySetMapping>
  62. </EntityContainerMapping>
  63. </Mapping>
  64. </edmx:Mappings>
  65. </edmx:Runtime>
  66. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  67. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  68. <Connection>
  69. <DesignerInfoPropertySet>
  70. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  71. </DesignerInfoPropertySet>
  72. </Connection>
  73. <Options>
  74. <DesignerInfoPropertySet>
  75. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  76. <DesignerProperty Name="EnablePluralization" Value="false" />
  77. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  78. <DesignerProperty Name="UseLegacyProvider" Value="false" />
  79. <DesignerProperty Name="CodeGenerationStrategy" Value="Нет" />
  80. </DesignerInfoPropertySet>
  81. </Options>
  82. <!-- Diagram content (shape and connector positions) -->
  83. <Diagrams></Diagrams>
  84. </Designer>
  85. </edmx:Edmx>