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
903 B

4 years ago
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <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">
  3. <EntityType Name="Employ_Table">
  4. <Key>
  5. <PropertyRef Name="EmployNum" />
  6. </Key>
  7. <Property Name="EmployNum" Type="int" Nullable="false" />
  8. <Property Name="Password" Type="nvarchar" MaxLength="20" Nullable="false" />
  9. <Property Name="Name" Type="nvarchar" MaxLength="50" Nullable="false" />
  10. </EntityType>
  11. <EntityContainer Name="TestDBModelStoreContainer">
  12. <EntitySet Name="Employ_Table" EntityType="Self.Employ_Table" Schema="dbo" store:Type="Tables" />
  13. </EntityContainer>
  14. </Schema>