13 lines
699 B
Plaintext
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<Schema Namespace="tempdbModel" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2008/09/edm">
<EntityContainer Name="Entities" annotation:LazyLoadingEnabled="true">
<EntitySet Name="TransactionLog" EntityType="tempdbModel.TransactionLogEntry" />
</EntityContainer>
<EntityType Name="TransactionLogEntry">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="TransactionCount" Type="Int32" Nullable="false" />
</EntityType>
</Schema>