mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 12:30:32 +00:00
243 lines
No EOL
13 KiB
XML
243 lines
No EOL
13 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="Methods" EntityType="DebugModel.Store.Methods" store:Type="Tables" Schema="dbo" />
|
|
<EntitySet Name="MLSYMBOLs" EntityType="DebugModel.Store.MLSYMBOLs" store:Type="Tables" Schema="dbo" />
|
|
</EntityContainer>
|
|
<EntityType Name="FIELD_INFO">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="TYPE" Type="nvarchar" Nullable="false" MaxLength="4000" />
|
|
<Property Name="OFFSET" Type="int" Nullable="false" />
|
|
<Property Name="NAME" Type="nvarchar" Nullable="false" MaxLength="4000" />
|
|
<Property Name="ID" Type="uniqueidentifier" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="FIELD_MAPPING">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="TYPE_NAME" Type="nvarchar" Nullable="false" MaxLength="4000" />
|
|
<Property Name="FIELD_NAME" Type="nvarchar" Nullable="false" MaxLength="4000" />
|
|
<Property Name="ID" Type="uniqueidentifier" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="Labels">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="LABELNAME" Type="nvarchar" Nullable="false" MaxLength="4000" />
|
|
<Property Name="ADDRESS" Type="bigint" Nullable="false" />
|
|
<Property Name="ID" Type="uniqueidentifier" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="LOCAL_ARGUMENT_INFO">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="METHODLABELNAME" Type="nvarchar" Nullable="false" MaxLength="255" />
|
|
<Property Name="ISARGUMENT" Type="smallint" Nullable="false" />
|
|
<Property Name="INDEXINMETHOD" Type="int" Nullable="false" />
|
|
<Property Name="OFFSET" Type="int" Nullable="false" />
|
|
<Property Name="NAME" Type="nvarchar" Nullable="false" MaxLength="255" />
|
|
<Property Name="TYPENAME" Type="nvarchar" Nullable="false" MaxLength="4000" />
|
|
<Property Name="ID" Type="uniqueidentifier" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="Methods">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="MethodId" Type="int" Nullable="false" />
|
|
<Property Name="LabelPrefix" Type="nvarchar" Nullable="false" MaxLength="255" />
|
|
<Property Name="ID" Type="uniqueidentifier" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="MLSYMBOLs">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="LABELNAME" Type="nvarchar" Nullable="false" MaxLength="255" />
|
|
<Property Name="STACKDIFF" Type="int" Nullable="false" />
|
|
<Property Name="ILASMFILE" Type="nvarchar" Nullable="false" MaxLength="255" />
|
|
<Property Name="TYPETOKEN" Type="int" Nullable="false" />
|
|
<Property Name="METHODTOKEN" Type="int" Nullable="false" />
|
|
<Property Name="ILOFFSET" Type="int" Nullable="false" />
|
|
<Property Name="METHODNAME" Type="nvarchar" Nullable="false" MaxLength="255" />
|
|
<Property Name="ID" Type="uniqueidentifier" Nullable="false" />
|
|
</EntityType>
|
|
</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="Methods" EntityType="DebugModel.Method" />
|
|
<EntitySet Name="MLSYMBOLs" EntityType="DebugModel.MLSYMBOL" />
|
|
</EntityContainer>
|
|
<EntityType Name="FIELD_INFO">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="TYPE" Type="String" Nullable="false" MaxLength="4000" Unicode="true" FixedLength="false" />
|
|
<Property Name="OFFSET" Type="Int32" Nullable="false" />
|
|
<Property Name="NAME" Type="String" Nullable="false" MaxLength="4000" Unicode="true" FixedLength="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="FIELD_MAPPING">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="TYPE_NAME" Type="String" Nullable="false" MaxLength="4000" Unicode="true" FixedLength="false" />
|
|
<Property Name="FIELD_NAME" Type="String" Nullable="false" MaxLength="4000" Unicode="true" FixedLength="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="Label">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="LABELNAME" Type="String" Nullable="false" MaxLength="4000" Unicode="true" FixedLength="false" />
|
|
<Property Name="ADDRESS" Type="Int64" Nullable="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="LOCAL_ARGUMENT_INFO">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="METHODLABELNAME" Type="String" Nullable="false" MaxLength="255" Unicode="true" FixedLength="false" />
|
|
<Property Name="ISARGUMENT" Type="Int16" Nullable="false" />
|
|
<Property Name="INDEXINMETHOD" Type="Int32" Nullable="false" />
|
|
<Property Name="OFFSET" Type="Int32" Nullable="false" />
|
|
<Property Name="NAME" Type="String" Nullable="false" MaxLength="255" Unicode="true" FixedLength="false" />
|
|
<Property Name="TYPENAME" Type="String" Nullable="false" MaxLength="4000" Unicode="true" FixedLength="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="Method">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="MethodId" Type="Int32" Nullable="false" />
|
|
<Property Name="LabelPrefix" Type="String" Nullable="false" MaxLength="255" Unicode="true" FixedLength="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" />
|
|
</EntityType>
|
|
<EntityType Name="MLSYMBOL">
|
|
<Key>
|
|
<PropertyRef Name="ID" />
|
|
</Key>
|
|
<Property Name="LABELNAME" Type="String" Nullable="false" MaxLength="255" Unicode="true" FixedLength="false" />
|
|
<Property Name="STACKDIFF" Type="Int32" Nullable="false" />
|
|
<Property Name="ILASMFILE" Type="String" Nullable="false" MaxLength="255" Unicode="true" FixedLength="false" />
|
|
<Property Name="TYPETOKEN" Type="Int32" Nullable="false" />
|
|
<Property Name="METHODTOKEN" Type="Int32" Nullable="false" />
|
|
<Property Name="ILOFFSET" Type="Int32" Nullable="false" />
|
|
<Property Name="METHODNAME" Type="String" Nullable="false" MaxLength="255" Unicode="true" FixedLength="false" />
|
|
<Property Type="Guid" Name="ID" Nullable="false" />
|
|
</EntityType>
|
|
</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="LABELNAME" ColumnName="LABELNAME" />
|
|
<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="Methods">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.Method)">
|
|
<MappingFragment StoreEntitySet="Methods">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="MethodId" ColumnName="MethodId" />
|
|
<ScalarProperty Name="LabelPrefix" ColumnName="LabelPrefix" />
|
|
</MappingFragment>
|
|
</EntityTypeMapping>
|
|
</EntitySetMapping>
|
|
<EntitySetMapping Name="MLSYMBOLs">
|
|
<EntityTypeMapping TypeName="IsTypeOf(DebugModel.MLSYMBOL)">
|
|
<MappingFragment StoreEntitySet="MLSYMBOLs">
|
|
<ScalarProperty Name="ID" ColumnName="ID" />
|
|
<ScalarProperty Name="LABELNAME" ColumnName="LABELNAME" />
|
|
<ScalarProperty Name="STACKDIFF" ColumnName="STACKDIFF" />
|
|
<ScalarProperty Name="ILASMFILE" ColumnName="ILASMFILE" />
|
|
<ScalarProperty Name="TYPETOKEN" ColumnName="TYPETOKEN" />
|
|
<ScalarProperty Name="METHODTOKEN" ColumnName="METHODTOKEN" />
|
|
<ScalarProperty Name="ILOFFSET" ColumnName="ILOFFSET" />
|
|
<ScalarProperty Name="METHODNAME" ColumnName="METHODNAME" />
|
|
</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="0.75" PointY="0.75" Height="1.787985026041667" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.FIELD_MAPPING" Width="1.5" PointX="2.75" PointY="0.75" Height="1.59568359375" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.Label" Width="1.5" PointX="0.75" PointY="3.75" Height="1.5956835937499996" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.LOCAL_ARGUMENT_INFO" Width="1.5" PointX="2.75" PointY="3.75" Height="2.3648893229166656" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.Method" Width="1.5" PointX="4.75" PointY="0.75" Height="1.59568359375" IsExpanded="true" />
|
|
<EntityTypeShape EntityType="DebugModel.MLSYMBOL" Width="1.5" PointX="4.75" PointY="3.75" Height="2.5571907552083326" IsExpanded="true" />
|
|
</Diagram>
|
|
</Diagrams>
|
|
</Designer>
|
|
</edmx:Edmx> |