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.
14 lines
903 B
14 lines
903 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<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">
|
|
<EntityType Name="Employ_Table">
|
|
<Key>
|
|
<PropertyRef Name="EmployNum" />
|
|
</Key>
|
|
<Property Name="EmployNum" Type="int" Nullable="false" />
|
|
<Property Name="Password" Type="nvarchar" MaxLength="20" Nullable="false" />
|
|
<Property Name="Name" Type="nvarchar" MaxLength="50" Nullable="false" />
|
|
</EntityType>
|
|
<EntityContainer Name="TestDBModelStoreContainer">
|
|
<EntitySet Name="Employ_Table" EntityType="Self.Employ_Table" Schema="dbo" store:Type="Tables" />
|
|
</EntityContainer>
|
|
</Schema>
|