OSS인증 - 팀장 : 서영민 - 팀원 : 김현, 박상진, 박승영, 윤동수, 김성미
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

72 lines
3.9 KiB

4 years ago
  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="TestDBModel.Store" 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="Employ_Table">
  9. <Key>
  10. <PropertyRef Name="EmployNum" />
  11. </Key>
  12. <Property Name="EmployNum" Type="int" Nullable="false" />
  13. <Property Name="Password" Type="nvarchar" MaxLength="20" Nullable="false" />
  14. <Property Name="Name" Type="nvarchar" MaxLength="50" Nullable="false" />
  15. </EntityType>
  16. <EntityContainer Name="TestDBModelStoreContainer">
  17. <EntitySet Name="Employ_Table" EntityType="Self.Employ_Table" Schema="dbo" store:Type="Tables" />
  18. </EntityContainer>
  19. </Schema>
  20. </edmx:StorageModels>
  21. <!-- CSDL content -->
  22. <edmx:ConceptualModels>
  23. <Schema Namespace="TestDBModel" 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">
  24. <EntityType Name="Employ_Table">
  25. <Key>
  26. <PropertyRef Name="EmployNum" />
  27. </Key>
  28. <Property Name="EmployNum" Type="Int32" Nullable="false" />
  29. <Property Name="Password" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
  30. <Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
  31. </EntityType>
  32. <EntityContainer Name="EmployerListEntities" annotation:LazyLoadingEnabled="true">
  33. <EntitySet Name="Employ_Table" EntityType="Self.Employ_Table" />
  34. </EntityContainer>
  35. </Schema>
  36. </edmx:ConceptualModels>
  37. <!-- C-S mapping content -->
  38. <edmx:Mappings>
  39. <Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
  40. <EntityContainerMapping StorageEntityContainer="TestDBModelStoreContainer" CdmEntityContainer="EmployerListEntities">
  41. <EntitySetMapping Name="Employ_Table">
  42. <EntityTypeMapping TypeName="TestDBModel.Employ_Table">
  43. <MappingFragment StoreEntitySet="Employ_Table">
  44. <ScalarProperty Name="EmployNum" ColumnName="EmployNum" />
  45. <ScalarProperty Name="Password" ColumnName="Password" />
  46. <ScalarProperty Name="Name" ColumnName="Name" />
  47. </MappingFragment>
  48. </EntityTypeMapping>
  49. </EntitySetMapping>
  50. </EntityContainerMapping>
  51. </Mapping>
  52. </edmx:Mappings>
  53. </edmx:Runtime>
  54. <!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
  55. <Designer xmlns="http://schemas.microsoft.com/ado/2009/11/edmx">
  56. <Connection>
  57. <DesignerInfoPropertySet>
  58. <DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
  59. </DesignerInfoPropertySet>
  60. </Connection>
  61. <Options>
  62. <DesignerInfoPropertySet>
  63. <DesignerProperty Name="ValidateOnBuild" Value="true" />
  64. <DesignerProperty Name="EnablePluralization" Value="false" />
  65. <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
  66. <DesignerProperty Name="UseLegacyProvider" Value="false" />
  67. <DesignerProperty Name="CodeGenerationStrategy" Value="없음" />
  68. </DesignerInfoPropertySet>
  69. </Options>
  70. <!-- Diagram content (shape and connector positions) -->
  71. <Diagrams></Diagrams>
  72. </Designer>
  73. </edmx:Edmx>