Jonathan Ouellette 580e90f6a2 initial add
2022-09-27 14:10:30 -07:00

96 lines
5.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<edmx:Edmx Version="3.0" xmlns:edmx="http://schemas.microsoft.com/ado/2009/11/edmx">
<!-- EF Runtime content -->
<edmx:Runtime>
<!-- SSDL content -->
<edmx:StorageModels>
<Schema Namespace="FabApprovalSystemModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2012" Alias="Self" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns:customannotation="http://schemas.microsoft.com/ado/2013/11/edm/customannotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
<EntityType Name="_8DAuditedStandard">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="Standard" Type="varchar" MaxLength="20" Nullable="false" />
</EntityType>
<EntityType Name="_8DAuditedStandardByAudit">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
<Property Name="AuditNo" Type="int" Nullable="false" />
<Property Name="AuditedStandardID" Type="int" Nullable="false" />
</EntityType>
<EntityContainer Name="FabApprovalSystemModelStoreContainer">
<EntitySet Name="_8DAuditedStandard" EntityType="Self._8DAuditedStandard" Schema="dbo" store:Type="Tables" />
<EntitySet Name="_8DAuditedStandardByAudit" EntityType="Self._8DAuditedStandardByAudit" Schema="dbo" store:Type="Tables" />
</EntityContainer>
</Schema></edmx:StorageModels>
<!-- CSDL content -->
<edmx:ConceptualModels>
<Schema Namespace="FabApprovalSystemModel" 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="C_8DAuditedStandard">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="Standard" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" />
</EntityType>
<EntityContainer Name="FabApprovalSystemEntitiesAll" annotation:LazyLoadingEnabled="true">
<EntitySet Name="C_8DAuditedStandard" EntityType="Self.C_8DAuditedStandard" />
<EntitySet Name="C_8DAuditedStandardByAudit" EntityType="FabApprovalSystemModel.C_8DAuditedStandardByAudit" />
</EntityContainer>
<EntityType Name="C_8DAuditedStandardByAudit">
<Key>
<PropertyRef Name="ID" />
</Key>
<Property Name="ID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
<Property Name="AuditNo" Type="Int32" Nullable="false" />
<Property Name="AuditedStandardID" Type="Int32" Nullable="false" />
</EntityType>
</Schema>
</edmx:ConceptualModels>
<!-- C-S mapping content -->
<edmx:Mappings>
<Mapping Space="C-S" xmlns="http://schemas.microsoft.com/ado/2009/11/mapping/cs">
<EntityContainerMapping StorageEntityContainer="FabApprovalSystemModelStoreContainer" CdmEntityContainer="FabApprovalSystemEntitiesAll">
<EntitySetMapping Name="C_8DAuditedStandard">
<EntityTypeMapping TypeName="FabApprovalSystemModel.C_8DAuditedStandard">
<MappingFragment StoreEntitySet="_8DAuditedStandard">
<ScalarProperty Name="ID" ColumnName="ID" />
<ScalarProperty Name="Standard" ColumnName="Standard" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
<EntitySetMapping Name="C_8DAuditedStandardByAudit">
<EntityTypeMapping TypeName="FabApprovalSystemModel.C_8DAuditedStandardByAudit">
<MappingFragment StoreEntitySet="_8DAuditedStandardByAudit">
<ScalarProperty Name="AuditedStandardID" ColumnName="AuditedStandardID" />
<ScalarProperty Name="AuditNo" ColumnName="AuditNo" />
<ScalarProperty Name="ID" ColumnName="ID" />
</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/2009/11/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" />
<DesignerProperty Name="UseLegacyProvider" Value="false" />
<DesignerProperty Name="CodeGenerationStrategy" Value="None" />
</DesignerInfoPropertySet>
</Options>
<!-- Diagram content (shape and connector positions) -->
<Diagrams></Diagrams>
</Designer>
</edmx:Edmx>