mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
495 lines
No EOL
26 KiB
XML
495 lines
No EOL
26 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<edmx:Edmx Version="2.0" xmlns:edmx="http://schemas.microsoft.com/ado/2008/10/edmx">
|
|
<!-- EF Runtime content -->
|
|
<edmx:Runtime>
|
|
<!-- SSDL content -->
|
|
<edmx:StorageModels>
|
|
<Schema Namespace="DebugModel.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="DebugModelStoreContainer">
|
|
<EntitySet Name="FIELD_INFO" EntityType="DebugModel.Store.FIELD_INFO" store:Type="Tables" Schema="dbo" />
|
|
<EntitySet Name="FIELD_MAPPING" EntityType="DebugModel.Store.FIELD_MAPPING" store:Type="Tables" Schema="dbo" />
|
|
<EntitySet Name="Labels" EntityType="DebugModel.Store.Labels" store:Type="Tables" Schema="dbo" />
|
|
<EntitySet Name="LOCAL_ARGUMENT_INFO" EntityType="DebugModel.Store.LOCAL_ARGUMENT_INFO" store:Type="Tables" Schema="dbo" />
|
|
<EntitySet Name="MethodIlOps" EntityType="DebugModel.Store.MethodIlOps" store:Type="Tables" Schema="dbo" />
|
|
<EntitySet Name="AssemblyFiles" EntityType="DebugModel.Store.AssemblyFiles" store:Type="Tables" Schema="dbo" />
|
|
<EntitySet Name="Methods" EntityType="DebugModel.Store.Methods" store:Type="Tables" Schema="dbo" />
|
|
<EntitySet Name="Documents" EntityType="DebugModel.Store.Documents" store:Type="Tables" Schema="dbo" />
|
|
<AssociationSet Name="AssemblyFileMethod" Association="DebugModel.Store.AssemblyFileMethod">
|
|
<End Role="AssemblyFile" EntitySet="AssemblyFiles" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
<AssociationSet Name="DocumentMethod" Association="DebugModel.Store.DocumentMethod">
|
|
<End Role="Document" EntitySet="Documents" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
<AssociationSet Name="LabelMethod" Association="DebugModel.Store.LabelMethod">
|
|
<End Role="Label" EntitySet="Labels" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
<AssociationSet Name="LabelMethodEnd" Association="DebugModel.Store.LabelMethodEnd">
|
|
<End Role="Label" EntitySet="Labels" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
<AssociationSet Name="MethodIlOpMethod" Association="DebugModel.Store.MethodIlOpMethod">
|
|
<End Role="MethodIlOp" EntitySet="MethodIlOps" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
</EntityContainer>
|
|
<EntityType Name="FIELD_INFO">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="TYPE" Type="nvarchar" Nullable="false" MaxLength="512" />
|
|
<Property Name="OFFSET" Type="int" Nullable="false" />
|
|
<Property Name="NAME" Type="nvarchar" Nullable="false" MaxLength="512" />
|
|
<Property Name="ID" Type="uniqueidentifier" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="FIELD_MAPPING">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="TYPE_NAME" Type="nvarchar" Nullable="false" MaxLength="512" />
|
|
<Property Name="FIELD_NAME" Type="nvarchar" Nullable="false" MaxLength="512" />
|
|
<Property Name="ID" Type="uniqueidentifier" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="Labels">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="ID" Type="uniqueidentifier" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
<Property Name="Name" Type="nvarchar" Nullable="false" MaxLength="256" />
|
|
<Property Name="Address" Type="bigint" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="LOCAL_ARGUMENT_INFO">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="METHODLABELNAME" Type="nvarchar" Nullable="false" MaxLength="256" />
|
|
<Property Name="IsArgument" Type="bit" Nullable="false" />
|
|
<Property Name="INDEXINMETHOD" Type="int" Nullable="false" />
|
|
<Property Name="OFFSET" Type="int" Nullable="false" />
|
|
<Property Name="NAME" Type="nvarchar" Nullable="false" MaxLength="64" />
|
|
<Property Name="TYPENAME" Type="nvarchar" Nullable="false" MaxLength="256" />
|
|
<Property Name="ID" Type="uniqueidentifier" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="MethodIlOps">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="ID" Type="uniqueidentifier" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
<Property Name="LabelName" Type="nvarchar" Nullable="false" MaxLength="256" />
|
|
<Property Name="StackDiff" Type="int" Nullable="false" />
|
|
<Property Name="IlOffset" Type="int" Nullable="false" />
|
|
<Property Name="MethodID" Type="uniqueidentifier" Nullable="true" />
|
|
</EntityType>
|
|
<EntityType Name="AssemblyFiles">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="ID" Type="uniqueidentifier" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
<Property Name="Pathname" Type="nvarchar" Nullable="false" MaxLength="256" />
|
|
</EntityType>
|
|
<EntityType Name="Methods">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="ID" Type="uniqueidentifier" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
<Property Name="TypeToken" Type="int" Nullable="false" />
|
|
<Property Name="MethodToken" Type="int" Nullable="false" />
|
|
<Property Name="AssemblyFileID" Type="uniqueidentifier" Nullable="false" />
|
|
<Property Name="LineColStart" Type="bigint" Nullable="false" />
|
|
<Property Name="LineColEnd" Type="bigint" Nullable="false" />
|
|
<Property Name="DocumentID" Type="uniqueidentifier" Nullable="false" />
|
|
<Property Name="LabelStartID" Type="uniqueidentifier" Nullable="true" />
|
|
<Property Name="LabelEndID" Type="uniqueidentifier" Nullable="true" />
|
|
<Property Name="LabelCall" Type="nvarchar" Nullable="false" MaxLength="256" />
|
|
</EntityType>
|
|
<EntityType Name="Documents">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="ID" Type="uniqueidentifier" StoreGeneratedPattern="Identity" Nullable="false" />
|
|
<Property Name="Pathname" Type="nvarchar" Nullable="false" MaxLength="256" />
|
|
</EntityType>
|
|
<Association Name="AssemblyFileMethod">
|
|
<End Role="AssemblyFile" Type="DebugModel.Store.AssemblyFiles" Multiplicity="1" />
|
|
<End Role="Method" Type="DebugModel.Store.Methods" Multiplicity="*" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="AssemblyFile">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="Method">
|
|
<PropertyRef Name="AssemblyFileID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
<Association Name="DocumentMethod">
|
|
<End Role="Document" Type="DebugModel.Store.Documents" Multiplicity="1" />
|
|
<End Role="Method" Type="DebugModel.Store.Methods" Multiplicity="*" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="Document">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="Method">
|
|
<PropertyRef Name="DocumentID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
<Association Name="LabelMethod">
|
|
<End Role="Label" Type="DebugModel.Store.Labels" Multiplicity="0..1" />
|
|
<End Role="Method" Type="DebugModel.Store.Methods" Multiplicity="*" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="Label">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="Method">
|
|
<PropertyRef Name="LabelStartID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
<Association Name="LabelMethodEnd">
|
|
<End Role="Label" Type="DebugModel.Store.Labels" Multiplicity="0..1" />
|
|
<End Role="Method" Type="DebugModel.Store.Methods" Multiplicity="*" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="Label">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="Method">
|
|
<PropertyRef Name="LabelEndID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
<Association Name="MethodIlOpMethod">
|
|
<End Role="MethodIlOp" Type="DebugModel.Store.MethodIlOps" Multiplicity="*" />
|
|
<End Role="Method" Type="DebugModel.Store.Methods" Multiplicity="0..1" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="Method">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="MethodIlOp">
|
|
<PropertyRef Name="MethodID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
</Schema></edmx:StorageModels>
|
|
<!-- CSDL content -->
|
|
<edmx:ConceptualModels>
|
|
<Schema Namespace="DebugModel" 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="FIELD_INFO" EntityType="DebugModel.FIELD_INFO" />
|
|
<EntitySet Name="FIELD_MAPPING" EntityType="DebugModel.FIELD_MAPPING" />
|
|
<EntitySet Name="Labels" EntityType="DebugModel.Label" />
|
|
<EntitySet Name="LOCAL_ARGUMENT_INFO" EntityType="DebugModel.LOCAL_ARGUMENT_INFO" />
|
|
<EntitySet Name="MethodIlOps" EntityType="DebugModel.MethodIlOp" />
|
|
<EntitySet Name="AssemblyFiles" EntityType="DebugModel.AssemblyFile" />
|
|
<EntitySet Name="Methods" EntityType="DebugModel.Method" />
|
|
<AssociationSet Name="AssemblyFileMethod" Association="DebugModel.AssemblyFileMethod">
|
|
<End Role="AssemblyFile" EntitySet="AssemblyFiles" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
<EntitySet Name="Documents" EntityType="DebugModel.Document" />
|
|
<AssociationSet Name="DocumentMethod" Association="DebugModel.DocumentMethod">
|
|
<End Role="Document" EntitySet="Documents" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
<AssociationSet Name="LabelMethod" Association="DebugModel.LabelMethod">
|
|
<End Role="Label" EntitySet="Labels" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
<AssociationSet Name="LabelMethodEnd" Association="DebugModel.LabelMethodEnd">
|
|
<End Role="Label" EntitySet="Labels" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
<AssociationSet Name="MethodIlOpMethod" Association="DebugModel.MethodIlOpMethod">
|
|
<End Role="MethodIlOp" EntitySet="MethodIlOps" />
|
|
<End Role="Method" EntitySet="Methods" />
|
|
</AssociationSet>
|
|
</EntityContainer>
|
|
<EntityType Name="FIELD_INFO">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="TYPE" Type="String" Nullable="false" MaxLength="512" Unicode="true" FixedLength="false" />
|
|
<Property Name="OFFSET" Type="Int32" Nullable="false" />
|
|
<Property Name="NAME" Type="String" Nullable="false" MaxLength="512" Unicode="true" FixedLength="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
</EntityType>
|
|
<EntityType Name="FIELD_MAPPING">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="TYPE_NAME" Type="String" Nullable="false" MaxLength="512" Unicode="true" FixedLength="false" />
|
|
<Property Name="FIELD_NAME" Type="String" Nullable="false" MaxLength="512" Unicode="true" FixedLength="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
</EntityType>
|
|
<EntityType Name="Label">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Type="Guid" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
<Property Type="String" Name="Name" Nullable="false" MaxLength="256" />
|
|
<Property Type="Int64" Name="Address" Nullable="false" />
|
|
<NavigationProperty Name="MethodStart" Relationship="DebugModel.LabelMethod" FromRole="Label" ToRole="Method" />
|
|
<NavigationProperty Name="MethodEnd" Relationship="DebugModel.LabelMethodEnd" FromRole="Label" ToRole="Method" />
|
|
</EntityType>
|
|
<EntityType Name="LOCAL_ARGUMENT_INFO">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="METHODLABELNAME" Type="String" Nullable="false" MaxLength="256" Unicode="true" FixedLength="false" />
|
|
<Property Name="IsArgument" Type="Boolean" Nullable="false" />
|
|
<Property Name="INDEXINMETHOD" Type="Int32" Nullable="false" />
|
|
<Property Name="OFFSET" Type="Int32" Nullable="false" />
|
|
<Property Name="NAME" Type="String" Nullable="false" MaxLength="64" Unicode="true" FixedLength="false" />
|
|
<Property Name="TYPENAME" Type="String" Nullable="false" MaxLength="256" Unicode="true" FixedLength="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
</EntityType>
|
|
<EntityType Name="MethodIlOp">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Type="Guid" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
<Property Name="LabelName" Type="String" Nullable="false" MaxLength="256" Unicode="true" FixedLength="false" />
|
|
<Property Name="StackDiff" Type="Int32" Nullable="false" />
|
|
<Property Name="IlOffset" Type="Int32" Nullable="false" />
|
|
<NavigationProperty Name="Method" Relationship="DebugModel.MethodIlOpMethod" FromRole="MethodIlOp" ToRole="Method" />
|
|
<Property Type="Guid" Name="MethodID" Nullable="true" />
|
|
</EntityType>
|
|
<EntityType Name="AssemblyFile">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Type="Guid" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
<Property Type="String" Name="Pathname" Nullable="false" MaxLength="256" />
|
|
<NavigationProperty Name="Methods" Relationship="DebugModel.AssemblyFileMethod" FromRole="AssemblyFile" ToRole="Method" />
|
|
</EntityType>
|
|
<EntityType Name="Method">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Type="Guid" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
<Property Type="Int32" Name="TypeToken" Nullable="false" />
|
|
<Property Type="Int32" Name="MethodToken" Nullable="false" />
|
|
<NavigationProperty Name="AssemblyFile" Relationship="DebugModel.AssemblyFileMethod" FromRole="Method" ToRole="AssemblyFile" />
|
|
<Property Type="Guid" Name="AssemblyFileID" Nullable="false" />
|
|
<Property Type="Int64" Name="LineColStart" Nullable="false" />
|
|
<Property Type="Int64" Name="LineColEnd" Nullable="false" />
|
|
<NavigationProperty Name="Document" Relationship="DebugModel.DocumentMethod" FromRole="Method" ToRole="Document" />
|
|
<Property Type="Guid" Name="DocumentID" Nullable="false" />
|
|
<NavigationProperty Name="LabelStart" Relationship="DebugModel.LabelMethod" FromRole="Method" ToRole="Label" />
|
|
<Property Type="Guid" Name="LabelStartID" Nullable="true" />
|
|
<NavigationProperty Name="LabelEnd" Relationship="DebugModel.LabelMethodEnd" FromRole="Method" ToRole="Label" />
|
|
<Property Type="Guid" Name="LabelEndID" Nullable="true" />
|
|
<NavigationProperty Name="MethodIlOps" Relationship="DebugModel.MethodIlOpMethod" FromRole="Method" ToRole="MethodIlOp" />
|
|
<Property Type="String" Name="LabelCall" Nullable="false" MaxLength="256" />
|
|
</EntityType>
|
|
<Association Name="AssemblyFileMethod">
|
|
<End Type="DebugModel.AssemblyFile" Role="AssemblyFile" Multiplicity="1" />
|
|
<End Type="DebugModel.Method" Role="Method" Multiplicity="*" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="AssemblyFile">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="Method">
|
|
<PropertyRef Name="AssemblyFileID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
<EntityType Name="Document">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Type="Guid" Name="ID" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
|
|
<NavigationProperty Name="Methods" Relationship="DebugModel.DocumentMethod" FromRole="Document" ToRole="Method" />
|
|
<Property Type="String" Name="Pathname" Nullable="false" MaxLength="256" />
|
|
</EntityType>
|
|
<Association Name="DocumentMethod">
|
|
<End Type="DebugModel.Document" Role="Document" Multiplicity="1" />
|
|
<End Type="DebugModel.Method" Role="Method" Multiplicity="*" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="Document">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="Method">
|
|
<PropertyRef Name="DocumentID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
<Association Name="LabelMethod">
|
|
<End Type="DebugModel.Label" Role="Label" Multiplicity="0..1" />
|
|
<End Type="DebugModel.Method" Role="Method" Multiplicity="*" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="Label">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="Method">
|
|
<PropertyRef Name="LabelStartID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
<Association Name="LabelMethodEnd">
|
|
<End Type="DebugModel.Label" Role="Label" Multiplicity="0..1" />
|
|
<End Type="DebugModel.Method" Role="Method" Multiplicity="*" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="Label">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="Method">
|
|
<PropertyRef Name="LabelEndID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
<Association Name="MethodIlOpMethod">
|
|
<End Type="DebugModel.MethodIlOp" Role="MethodIlOp" Multiplicity="*" />
|
|
<End Type="DebugModel.Method" Role="Method" Multiplicity="0..1" />
|
|
<ReferentialConstraint>
|
|
<Principal Role="Method">
|
|
<PropertyRef Name="ID" />
|
|
</Principal>
|
|
<Dependent Role="MethodIlOp">
|
|
<PropertyRef Name="MethodID" />
|
|
</Dependent>
|
|
</ReferentialConstraint>
|
|
</Association>
|
|
</Schema>
|
|
</edmx:ConceptualModels>
|
|
<!-- C-S mapping content -->
|
|
<edmx:Mappings>
|
|
<Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2008/09/mapping/cs">
|
|
<EntityContainerMapping StorageEntityContainer="DebugModelStoreContainer" CdmEntityContainer="Entities">
|
|
<EntitySetMapping Name="FIELD_INFO">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.FIELD_INFO)">
|
|
<MappingFragment StoreEntitySet="FIELD_INFO">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="TYPE" ColumnName="TYPE" />
|
|
<ScalarProperty Name="OFFSET" ColumnName="OFFSET" />
|
|
<ScalarProperty Name="NAME" ColumnName="NAME" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="FIELD_MAPPING">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.FIELD_MAPPING)">
|
|
<MappingFragment StoreEntitySet="FIELD_MAPPING">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="TYPE_NAME" ColumnName="TYPE_NAME" />
|
|
<ScalarProperty Name="FIELD_NAME" ColumnName="FIELD_NAME" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="Labels">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.Label)">
|
|
<MappingFragment StoreEntitySet="Labels">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="Name" ColumnName="Name" />
|
|
<ScalarProperty Name="Address" ColumnName="Address" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="LOCAL_ARGUMENT_INFO">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.LOCAL_ARGUMENT_INFO)">
|
|
<MappingFragment StoreEntitySet="LOCAL_ARGUMENT_INFO">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="METHODLABELNAME" ColumnName="METHODLABELNAME" />
|
|
<ScalarProperty Name="IsArgument" ColumnName="IsArgument" />
|
|
<ScalarProperty Name="INDEXINMETHOD" ColumnName="INDEXINMETHOD" />
|
|
<ScalarProperty Name="OFFSET" ColumnName="OFFSET" />
|
|
<ScalarProperty Name="NAME" ColumnName="NAME" />
|
|
<ScalarProperty Name="TYPENAME" ColumnName="TYPENAME" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="MethodIlOps">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.MethodIlOp)">
|
|
<MappingFragment StoreEntitySet="MethodIlOps">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="LabelName" ColumnName="LabelName" />
|
|
<ScalarProperty Name="StackDiff" ColumnName="StackDiff" />
|
|
<ScalarProperty Name="IlOffset" ColumnName="IlOffset" />
|
|
<ScalarProperty Name="MethodID" ColumnName="MethodID" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="AssemblyFiles">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.AssemblyFile)">
|
|
<MappingFragment StoreEntitySet="AssemblyFiles">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="Pathname" ColumnName="Pathname" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="Methods">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.Method)">
|
|
<MappingFragment StoreEntitySet="Methods">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="TypeToken" ColumnName="TypeToken" />
|
|
<ScalarProperty Name="MethodToken" ColumnName="MethodToken" />
|
|
<ScalarProperty Name="AssemblyFileID" ColumnName="AssemblyFileID" />
|
|
<ScalarProperty Name="LineColStart" ColumnName="LineColStart" />
|
|
<ScalarProperty Name="LineColEnd" ColumnName="LineColEnd" />
|
|
<ScalarProperty Name="DocumentID" ColumnName="DocumentID" />
|
|
<ScalarProperty Name="LabelStartID" ColumnName="LabelStartID" />
|
|
<ScalarProperty Name="LabelEndID" ColumnName="LabelEndID" />
|
|
<ScalarProperty Name="LabelCall" ColumnName="LabelCall" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="Documents">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.Document)">
|
|
<MappingFragment StoreEntitySet="Documents">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="Pathname" ColumnName="Pathname" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
</EntityContainerMapping>
|
|
</Mapping></edmx:Mappings>
|
|
</edmx:Runtime>
|
|
<!-- EF Designer content (DO NOT EDIT MANUALLY BELOW HERE) -->
|
|
<Designer xmlns="http://schemas.microsoft.com/ado/2008/10/edmx">
|
|
<Connection>
|
|
<DesignerInfoPropertySet>
|
|
<DesignerProperty Name="MetadataArtifactProcessing" Value="EmbedInOutputAssembly" />
|
|
</DesignerInfoPropertySet>
|
|
</Connection>
|
|
<Options>
|
|
<DesignerInfoPropertySet>
|
|
<DesignerProperty Name="ValidateOnBuild" Value="true" />
|
|
<DesignerProperty Name="EnablePluralization" Value="True" />
|
|
<DesignerProperty Name="IncludeForeignKeysInModel" Value="True" />
|
|
</DesignerInfoPropertySet>
|
|
</Options>
|
|
<!-- Diagram content (shape and connector positions) -->
|
|
<Diagrams>
|
|
<Diagram Name="DebugModel">
|
|
<EntityTypeShape EntityType="DebugModel.FIELD_INFO" Width="1.5" PointX="9.625" PointY="0.5" Height="1.787985026041667" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.FIELD_MAPPING" Width="1.5" PointX="9.5" PointY="5" Height="1.59568359375" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.Label" Width="1.5" PointX="5.875" PointY="0.5" Height="1.9802864583333335" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.LOCAL_ARGUMENT_INFO" Width="1.5" PointX="9.625" PointY="2.5" Height="2.3648893229166656" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.MethodIlOp" Width="1.5" PointX="5.875" PointY="3.125" Height="2.1725878906249996" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.AssemblyFile" Width="1.5" PointX="0.5" PointY="0.5" Height="1.59568359375" />
|
|
<EntityTypeShape EntityType="DebugModel.Method" Width="2.25" PointX="2.75" PointY="0.5" Height="3.9033007812499996" />
|
|
<AssociationConnector Association="DebugModel.AssemblyFileMethod">
|
|
<ConnectorPoint PointX="2" PointY="1.2978417968749998" />
|
|
<ConnectorPoint PointX="2.75" PointY="1.2978417968749998" />
|
|
</AssociationConnector>
|
|
<EntityTypeShape EntityType="DebugModel.Document" Width="1.5" PointX="0.5" PointY="2.5" Height="1.59568359375" />
|
|
<AssociationConnector Association="DebugModel.DocumentMethod">
|
|
<ConnectorPoint PointX="2" PointY="3.297841796875" />
|
|
<ConnectorPoint PointX="2.75" PointY="3.297841796875" />
|
|
</AssociationConnector>
|
|
<AssociationConnector Association="DebugModel.LabelMethod">
|
|
<ConnectorPoint PointX="5.875" PointY="1.8604056294759117" />
|
|
<ConnectorPoint PointX="5" PointY="1.8604056294759117" />
|
|
</AssociationConnector>
|
|
<AssociationConnector Association="DebugModel.LabelMethodEnd">
|
|
<ConnectorPoint PointX="5.875" PointY="1.1177028147379557" />
|
|
<ConnectorPoint PointX="5" PointY="1.1177028147379557" />
|
|
</AssociationConnector>
|
|
<AssociationConnector Association="DebugModel.MethodIlOpMethod">
|
|
<ConnectorPoint PointX="5.875" PointY="3.764150390625" />
|
|
<ConnectorPoint PointX="5" PointY="3.764150390625" />
|
|
</AssociationConnector>
|
|
</Diagram>
|
|
</Diagrams>
|
|
</Designer>
|
|
</edmx:Edmx> |