13 lines
801 B
XML
13 lines
801 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Schema Namespace="MetadataCachingModel.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2008" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/02/edm/ssdl">
|
|
<EntityContainer Name="MetadataCachingModelStoreContainer">
|
|
<EntitySet Name="##Customers" EntityType="MetadataCachingModel.Store.##Customer" store:Type="Tables" Schema="dbo" />
|
|
</EntityContainer>
|
|
<EntityType Name="##Customer">
|
|
<Key>
|
|
<PropertyRef Name="Id" />
|
|
</Key>
|
|
<Property Name="Id" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
|
|
<Property Name="Name" Type="nvarchar" MaxLength="20" Nullable="false" />
|
|
</EntityType>
|
|
</Schema> |