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.

13 lines
927 B

4 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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">
  3. <EntityType Name="Employ_Table">
  4. <Key>
  5. <PropertyRef Name="EmployNum" />
  6. </Key>
  7. <Property Name="EmployNum" Type="Int32" Nullable="false" />
  8. <Property Name="Password" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
  9. <Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
  10. </EntityType>
  11. <EntityContainer Name="EmployerListEntities" annotation:LazyLoadingEnabled="true">
  12. <EntitySet Name="Employ_Table" EntityType="Self.Employ_Table" />
  13. </EntityContainer>
  14. </Schema>