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.
|
|
<?xml version="1.0" encoding="utf-8"?><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"> <EntityType Name="Registration_Table"> <Key> <PropertyRef Name="id" /> </Key> <Property Name="id" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" /> <Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="false" /> <Property Name="Employee_Num" Type="Int32" Nullable="false" /> <Property Name="Password" Type="String" MaxLength="50" FixedLength="false" Unicode="false" /> </EntityType> <EntityContainer Name="TestDBEntities" annotation:LazyLoadingEnabled="true"> <EntitySet Name="Registration_Table" EntityType="Self.Registration_Table" /> </EntityContainer></Schema>
|