Model1.edmx 4.7 KB

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