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.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2008" 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"> <EntityType Name="Registration_Table"> <Key> <PropertyRef Name="id" /> </Key> <Property Name="id" Type="int" StoreGeneratedPattern="Identity" Nullable="false" /> <Property Name="Name" Type="varchar" MaxLength="50" /> <Property Name="Employee_Num" Type="int" Nullable="false" /> <Property Name="Password" Type="varchar" MaxLength="50" /> </EntityType> <EntityContainer Name="TestDBModelStoreContainer"> <EntitySet Name="Registration_Table" EntityType="Self.Registration_Table" Schema="dbo" store:Type="Tables" /> </EntityContainer></Schema>
|