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
927 B
14 lines
927 B
<?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="Employ_Table">
|
|
<Key>
|
|
<PropertyRef Name="EmployNum" />
|
|
</Key>
|
|
<Property Name="EmployNum" Type="Int32" Nullable="false" />
|
|
<Property Name="Password" Type="String" MaxLength="20" FixedLength="false" Unicode="true" Nullable="false" />
|
|
<Property Name="Name" Type="String" MaxLength="50" FixedLength="false" Unicode="true" Nullable="false" />
|
|
</EntityType>
|
|
<EntityContainer Name="EmployerListEntities" annotation:LazyLoadingEnabled="true">
|
|
<EntitySet Name="Employ_Table" EntityType="Self.Employ_Table" />
|
|
</EntityContainer>
|
|
</Schema>
|