﻿<?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="Model.Store" Alias="Self" Provider="System.Data.SqlClient" ProviderManifestToken="2005" xmlns:store="http://schemas.microsoft.com/ado/2007/12/edm/EntityStoreSchemaGenerator" xmlns="http://schemas.microsoft.com/ado/2009/11/edm/ssdl">
        <EntityContainer Name="ModelStoreContainer">
          <EntitySet Name="Groups" EntityType="Model.Store.Groups" store:Type="Tables" Schema="Report" />
          <EntitySet Name="ReportDefinitionCriteria" EntityType="Model.Store.ReportDefinitionCriteria" store:Type="Tables" Schema="Report" />
          <EntitySet Name="ReportDefinitions" EntityType="Model.Store.ReportDefinitions" store:Type="Tables" Schema="Report" />
          <EntitySet Name="Security" EntityType="Model.Store.Security" store:Type="Tables" Schema="Report" />
          <EntitySet Name="Servers" EntityType="Model.Store.Servers" store:Type="Tables" Schema="Report" />
          <AssociationSet Name="FK_ReportDefinitionCriteria_ReportDefinitions" Association="Model.Store.FK_ReportDefinitionCriteria_ReportDefinitions">
            <End Role="ReportDefinitions" EntitySet="ReportDefinitions" />
            <End Role="ReportDefinitionCriteria" EntitySet="ReportDefinitionCriteria" />
          </AssociationSet>
          <AssociationSet Name="FK_ReportDefinitions_Groups" Association="Model.Store.FK_ReportDefinitions_Groups">
            <End Role="Groups" EntitySet="Groups" />
            <End Role="ReportDefinitions" EntitySet="ReportDefinitions" />
          </AssociationSet>
          <AssociationSet Name="FK_ReportDefinitions_Servers" Association="Model.Store.FK_ReportDefinitions_Servers">
            <End Role="Servers" EntitySet="Servers" />
            <End Role="ReportDefinitions" EntitySet="ReportDefinitions" />
          </AssociationSet>
          <AssociationSet Name="FK_Security_ReportDefinitions" Association="Model.Store.FK_Security_ReportDefinitions">
            <End Role="ReportDefinitions" EntitySet="ReportDefinitions" />
            <End Role="Security" EntitySet="Security" />
          </AssociationSet>
        </EntityContainer>
        <EntityType Name="Groups">
          <Key>
            <PropertyRef Name="ReportGroupID" />
          </Key>
          <Property Name="ReportGroupID" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
          <Property Name="Description" Type="varchar" Nullable="false" MaxLength="255" />
          <Property Name="IsCancelled" Type="bit" Nullable="false" />
        </EntityType>
        <EntityType Name="ReportDefinitionCriteria">
          <Key>
            <PropertyRef Name="ReportDefinitionCriteriaID" />
          </Key>
          <Property Name="ReportDefinitionCriteriaID" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
          <Property Name="ReportDefinitionID" Type="bigint" Nullable="false" />
          <Property Name="CaptureFieldID" Type="smallint" Nullable="false" />
          <Property Name="Question" Type="varchar" Nullable="false" MaxLength="2000" />
          <Property Name="ReportingServicesField" Type="varchar" MaxLength="100" />
          <Property Name="OrderBy" Type="bigint" Nullable="false" />
          <Property Name="DataSourceName" Type="varchar" MaxLength="50" />
          <Property Name="DataSourceCriteria" Type="varchar" MaxLength="50" />
          <Property Name="IsCancelled" Type="bit" Nullable="false" />
        </EntityType>
        <EntityType Name="ReportDefinitions">
          <Key>
            <PropertyRef Name="ReportDefinitionID" />
          </Key>
          <Property Name="ReportDefinitionID" Type="bigint" Nullable="false" StoreGeneratedPattern="Identity" />
          <Property Name="ReportServerID" Type="int" Nullable="false" />
          <Property Name="ReportGroupID" Type="int" Nullable="false" />
          <Property Name="EntityID" Type="int" Nullable="false" />
          <Property Name="ItemID" Type="bigint" Nullable="false" />
          <Property Name="Title" Type="varchar" Nullable="false" MaxLength="255" />
          <Property Name="Description" Type="varchar" Nullable="false" MaxLength="1000" />
          <Property Name="ReportFolder" Type="varchar" Nullable="false" MaxLength="255" />
          <Property Name="ReportName" Type="varchar" Nullable="false" MaxLength="255" />
          <Property Name="IsCancelled" Type="bit" Nullable="false" />
          <Property Name="CreatedByID" Type="bigint" Nullable="false" />
          <Property Name="CreatedDate" Type="datetime" Nullable="false" />
          <Property Name="UpdatedByID" Type="bigint" Nullable="false" />
          <Property Name="UpdatedDate" Type="datetime" Nullable="false" />
        </EntityType>
        <EntityType Name="Security">
          <Key>
            <PropertyRef Name="ReportDefinitionID" />
            <PropertyRef Name="RoleID" />
          </Key>
          <Property Name="ReportDefinitionID" Type="bigint" Nullable="false" />
          <Property Name="RoleID" Type="smallint" Nullable="false" />
        </EntityType>
        <EntityType Name="Servers">
          <Key>
            <PropertyRef Name="ReportServerID" />
          </Key>
          <Property Name="ReportServerID" Type="int" Nullable="false" StoreGeneratedPattern="Identity" />
          <Property Name="Title" Type="varchar" Nullable="false" MaxLength="255" />
          <Property Name="Url" Type="varchar" Nullable="false" MaxLength="1000" />
          <Property Name="ServiceFileName" Type="varchar" Nullable="false" MaxLength="50" />
          <Property Name="AuthTypeID" Type="smallint" Nullable="false" />
          <Property Name="AuthDomain" Type="varchar" MaxLength="50" />
          <Property Name="AuthUser" Type="varchar" MaxLength="50" />
          <Property Name="AuthPassword" Type="varchar" MaxLength="50" />
          <Property Name="IsCancelled" Type="bit" Nullable="false" />
          <Property Name="CreatedByID" Type="bigint" Nullable="false" />
          <Property Name="CreatedDate" Type="datetime" Nullable="false" />
          <Property Name="UpdatedByID" Type="bigint" Nullable="false" />
          <Property Name="UpdatedDate" Type="datetime" Nullable="false" />
        </EntityType>
        <Association Name="FK_ReportDefinitionCriteria_ReportDefinitions">
          <End Role="ReportDefinitions" Type="Model.Store.ReportDefinitions" Multiplicity="1" />
          <End Role="ReportDefinitionCriteria" Type="Model.Store.ReportDefinitionCriteria" Multiplicity="*" />
          <ReferentialConstraint>
            <Principal Role="ReportDefinitions">
              <PropertyRef Name="ReportDefinitionID" />
            </Principal>
            <Dependent Role="ReportDefinitionCriteria">
              <PropertyRef Name="ReportDefinitionID" />
            </Dependent>
          </ReferentialConstraint>
        </Association>
        <Association Name="FK_ReportDefinitions_Groups">
          <End Role="Groups" Type="Model.Store.Groups" Multiplicity="1" />
          <End Role="ReportDefinitions" Type="Model.Store.ReportDefinitions" Multiplicity="*" />
          <ReferentialConstraint>
            <Principal Role="Groups">
              <PropertyRef Name="ReportGroupID" />
            </Principal>
            <Dependent Role="ReportDefinitions">
              <PropertyRef Name="ReportGroupID" />
            </Dependent>
          </ReferentialConstraint>
        </Association>
        <Association Name="FK_ReportDefinitions_Servers">
          <End Role="Servers" Type="Model.Store.Servers" Multiplicity="1" />
          <End Role="ReportDefinitions" Type="Model.Store.ReportDefinitions" Multiplicity="*" />
          <ReferentialConstraint>
            <Principal Role="Servers">
              <PropertyRef Name="ReportServerID" />
            </Principal>
            <Dependent Role="ReportDefinitions">
              <PropertyRef Name="ReportServerID" />
            </Dependent>
          </ReferentialConstraint>
        </Association>
        <Association Name="FK_Security_ReportDefinitions">
          <End Role="ReportDefinitions" Type="Model.Store.ReportDefinitions" Multiplicity="1" />
          <End Role="Security" Type="Model.Store.Security" Multiplicity="*" />
          <ReferentialConstraint>
            <Principal Role="ReportDefinitions">
              <PropertyRef Name="ReportDefinitionID" />
            </Principal>
            <Dependent Role="Security">
              <PropertyRef Name="ReportDefinitionID" />
            </Dependent>
          </ReferentialConstraint>
        </Association>
      </Schema></edmx:StorageModels>
    <!-- CSDL content -->
    <edmx:ConceptualModels>
      <Schema Namespace="Model" Alias="Self" xmlns:annotation="http://schemas.microsoft.com/ado/2009/02/edm/annotation" xmlns="http://schemas.microsoft.com/ado/2009/11/edm">
        <EntityContainer Name="AfxAdminReportContext" annotation:LazyLoadingEnabled="false">
          <EntitySet Name="ReportGroups" EntityType="Model.ReportGroup" />
          <EntitySet Name="ReportDefinitionCriterias" EntityType="Model.ReportDefinitionCriteria" />
          <EntitySet Name="ReportDefinitions" EntityType="Model.ReportDefinition" />
          <EntitySet Name="Securities" EntityType="Model.Security" />
          <EntitySet Name="ReportServers" EntityType="Model.ReportServer" />
          <AssociationSet Name="FK_ReportDefinitions_Groups" Association="Model.FK_ReportDefinitions_Groups">
            <End Role="ReportGroups" EntitySet="ReportGroups" />
            <End Role="ReportDefinitions" EntitySet="ReportDefinitions" />
          </AssociationSet>
          <AssociationSet Name="FK_ReportDefinitionCriteria_ReportDefinitions" Association="Model.FK_ReportDefinitionCriteria_ReportDefinitions">
            <End Role="ReportDefinitions" EntitySet="ReportDefinitions" />
            <End Role="ReportDefinitionCriteria" EntitySet="ReportDefinitionCriterias" />
          </AssociationSet>
          <AssociationSet Name="FK_ReportDefinitions_Servers" Association="Model.FK_ReportDefinitions_Servers">
            <End Role="ReportServers" EntitySet="ReportServers" />
            <End Role="ReportDefinitions" EntitySet="ReportDefinitions" />
          </AssociationSet>
          <AssociationSet Name="FK_Security_ReportDefinitions" Association="Model.FK_Security_ReportDefinitions">
            <End Role="ReportDefinitions" EntitySet="ReportDefinitions" />
            <End Role="Security" EntitySet="Securities" />
          </AssociationSet>
        </EntityContainer>
        <EntityType Name="ReportGroup">
          <Key>
            <PropertyRef Name="ReportGroupID" />
          </Key>
          <Property Name="ReportGroupID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
          <Property Name="Description" Type="String" Nullable="false" MaxLength="255" Unicode="false" FixedLength="false" />
          <Property Name="IsCancelled" Type="Boolean" Nullable="false" />
          <NavigationProperty Name="ReportDefinitions" Relationship="Model.FK_ReportDefinitions_Groups" FromRole="ReportGroups" ToRole="ReportDefinitions" a:GetterAccess="Internal" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:SetterAccess="Internal" />
        </EntityType>
        <EntityType Name="ReportDefinitionCriteria">
          <Key>
            <PropertyRef Name="ReportDefinitionCriteriaID" />
          </Key>
          <Property Name="ReportDefinitionCriteriaID" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
          <Property Name="ReportDefinitionID" Type="Int64" Nullable="false" />
          <Property Name="CaptureFieldID" Type="Int16" Nullable="false" />
          <Property Name="Question" Type="String" Nullable="false" MaxLength="2000" Unicode="false" FixedLength="false" />
          <Property Name="ReportingServicesField" Type="String" MaxLength="100" Unicode="false" FixedLength="false" />
          <Property Name="OrderBy" Type="Int64" Nullable="false" />
          <Property Name="DataSourceName" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
          <Property Name="DataSourceCriteria" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
          <Property Name="IsCancelled" Type="Boolean" Nullable="false" />
          <NavigationProperty Name="ReportDefinition" Relationship="Model.FK_ReportDefinitionCriteria_ReportDefinitions" FromRole="ReportDefinitionCriteria" ToRole="ReportDefinitions" a:SetterAccess="Public" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:GetterAccess="Public" />
        </EntityType>
        <EntityType Name="ReportDefinition">
          <Key>
            <PropertyRef Name="ReportDefinitionID" />
          </Key>
          <Property Name="ReportDefinitionID" Type="Int64" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
          <Property Name="ReportServerID" Type="Int32" Nullable="false" />
          <Property Name="ReportGroupID" Type="Int32" Nullable="false" />
          <Property Name="EntityID" Type="Int32" Nullable="false" />
          <Property Name="ItemID" Type="Int64" Nullable="false" />
          <Property Name="Title" Type="String" Nullable="false" MaxLength="255" Unicode="false" FixedLength="false" />
          <Property Name="Description" Type="String" Nullable="false" MaxLength="1000" Unicode="false" FixedLength="false" />
          <Property Name="ReportFolder" Type="String" Nullable="false" MaxLength="255" Unicode="false" FixedLength="false" />
          <Property Name="ReportName" Type="String" Nullable="false" MaxLength="255" Unicode="false" FixedLength="false" />
          <Property Name="IsCancelled" Type="Boolean" Nullable="false" />
          <Property Name="CreatedByID" Type="Int64" Nullable="false" />
          <Property Name="CreatedDate" Type="DateTime" Nullable="false" />
          <Property Name="UpdatedByID" Type="Int64" Nullable="false" />
          <Property Name="UpdatedDate" Type="DateTime" Nullable="false" />
          <NavigationProperty Name="ReportGroup" Relationship="Model.FK_ReportDefinitions_Groups" FromRole="ReportDefinitions" ToRole="ReportGroups" />
          <NavigationProperty Name="ReportDefinitionCriterias" Relationship="Model.FK_ReportDefinitionCriteria_ReportDefinitions" FromRole="ReportDefinitions" ToRole="ReportDefinitionCriteria" a:GetterAccess="Internal" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:SetterAccess="Internal" />
          <NavigationProperty Name="ReportServer" Relationship="Model.FK_ReportDefinitions_Servers" FromRole="ReportDefinitions" ToRole="ReportServers" />
          <NavigationProperty Name="Securities" Relationship="Model.FK_Security_ReportDefinitions" FromRole="ReportDefinitions" ToRole="Security" />
        </EntityType>
        <EntityType Name="Security">
          <Key>
            <PropertyRef Name="ReportDefinitionID" />
            <PropertyRef Name="RoleID" />
          </Key>
          <Property Name="ReportDefinitionID" Type="Int64" Nullable="false" />
          <Property Name="RoleID" Type="Int16" Nullable="false" />
          <NavigationProperty Name="ReportDefinition" Relationship="Model.FK_Security_ReportDefinitions" FromRole="Security" ToRole="ReportDefinitions" a:SetterAccess="Public" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:GetterAccess="Public" />
        </EntityType>
        <EntityType Name="ReportServer">
          <Key>
            <PropertyRef Name="ReportServerID" />
          </Key>
          <Property Name="ReportServerID" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
          <Property Name="Title" Type="String" Nullable="false" MaxLength="255" Unicode="false" FixedLength="false" />
          <Property Name="Url" Type="String" Nullable="false" MaxLength="1000" Unicode="false" FixedLength="false" />
          <Property Name="ServiceFileName" Type="String" Nullable="false" MaxLength="50" Unicode="false" FixedLength="false" />
          <Property Name="AuthTypeID" Type="Int16" Nullable="false" />
          <Property Name="AuthDomain" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
          <Property Name="AuthUser" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
          <Property Name="AuthPassword" Type="String" MaxLength="50" Unicode="false" FixedLength="false" />
          <Property Name="IsCancelled" Type="Boolean" Nullable="false" />
          <Property Name="CreatedByID" Type="Int64" Nullable="false" />
          <Property Name="CreatedDate" Type="DateTime" Nullable="false" />
          <Property Name="UpdatedByID" Type="Int64" Nullable="false" />
          <Property Name="UpdatedDate" Type="DateTime" Nullable="false" />
          <NavigationProperty Name="ReportDefinitions" Relationship="Model.FK_ReportDefinitions_Servers" FromRole="ReportServers" ToRole="ReportDefinitions" a:GetterAccess="Internal" xmlns:a="http://schemas.microsoft.com/ado/2006/04/codegeneration" a:SetterAccess="Internal" />
        </EntityType>
        <Association Name="FK_ReportDefinitions_Groups">
          <End Role="ReportGroups" Type="Model.ReportGroup" Multiplicity="1" />
          <End Role="ReportDefinitions" Type="Model.ReportDefinition" Multiplicity="*" />
          <ReferentialConstraint>
            <Principal Role="ReportGroups">
              <PropertyRef Name="ReportGroupID" />
            </Principal>
            <Dependent Role="ReportDefinitions">
              <PropertyRef Name="ReportGroupID" />
            </Dependent>
          </ReferentialConstraint>
        </Association>
        <Association Name="FK_ReportDefinitionCriteria_ReportDefinitions">
          <End Role="ReportDefinitions" Type="Model.ReportDefinition" Multiplicity="1" />
          <End Role="ReportDefinitionCriteria" Type="Model.ReportDefinitionCriteria" Multiplicity="*" />
          <ReferentialConstraint>
            <Principal Role="ReportDefinitions">
              <PropertyRef Name="ReportDefinitionID" />
            </Principal>
            <Dependent Role="ReportDefinitionCriteria">
              <PropertyRef Name="ReportDefinitionID" />
            </Dependent>
          </ReferentialConstraint>
        </Association>
        <Association Name="FK_ReportDefinitions_Servers">
          <End Role="ReportServers" Type="Model.ReportServer" Multiplicity="1" />
          <End Role="ReportDefinitions" Type="Model.ReportDefinition" Multiplicity="*" />
          <ReferentialConstraint>
            <Principal Role="ReportServers">
              <PropertyRef Name="ReportServerID" />
            </Principal>
            <Dependent Role="ReportDefinitions">
              <PropertyRef Name="ReportServerID" />
            </Dependent>
          </ReferentialConstraint>
        </Association>
        <Association Name="FK_Security_ReportDefinitions">
          <End Role="ReportDefinitions" Type="Model.ReportDefinition" Multiplicity="1" />
          <End Role="Security" Type="Model.Security" Multiplicity="*" />
          <ReferentialConstraint>
            <Principal Role="ReportDefinitions">
              <PropertyRef Name="ReportDefinitionID" />
            </Principal>
            <Dependent Role="Security">
              <PropertyRef Name="ReportDefinitionID" />
            </Dependent>
          </ReferentialConstraint>
        </Association>
      </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="ModelStoreContainer" CdmEntityContainer="AfxAdminReportContext">
          <EntitySetMapping Name="ReportGroups">
            <EntityTypeMapping TypeName="Model.ReportGroup">
              <MappingFragment StoreEntitySet="Groups">
                <ScalarProperty Name="ReportGroupID" ColumnName="ReportGroupID" />
                <ScalarProperty Name="Description" ColumnName="Description" />
                <ScalarProperty Name="IsCancelled" ColumnName="IsCancelled" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="ReportDefinitionCriterias">
            <EntityTypeMapping TypeName="Model.ReportDefinitionCriteria">
              <MappingFragment StoreEntitySet="ReportDefinitionCriteria">
                <ScalarProperty Name="ReportDefinitionCriteriaID" ColumnName="ReportDefinitionCriteriaID" />
                <ScalarProperty Name="ReportDefinitionID" ColumnName="ReportDefinitionID" />
                <ScalarProperty Name="CaptureFieldID" ColumnName="CaptureFieldID" />
                <ScalarProperty Name="Question" ColumnName="Question" />
                <ScalarProperty Name="ReportingServicesField" ColumnName="ReportingServicesField" />
                <ScalarProperty Name="OrderBy" ColumnName="OrderBy" />
                <ScalarProperty Name="DataSourceName" ColumnName="DataSourceName" />
                <ScalarProperty Name="DataSourceCriteria" ColumnName="DataSourceCriteria" />
                <ScalarProperty Name="IsCancelled" ColumnName="IsCancelled" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="ReportDefinitions">
            <EntityTypeMapping TypeName="Model.ReportDefinition">
              <MappingFragment StoreEntitySet="ReportDefinitions">
                <ScalarProperty Name="ReportDefinitionID" ColumnName="ReportDefinitionID" />
                <ScalarProperty Name="ReportServerID" ColumnName="ReportServerID" />
                <ScalarProperty Name="ReportGroupID" ColumnName="ReportGroupID" />
                <ScalarProperty Name="EntityID" ColumnName="EntityID" />
                <ScalarProperty Name="ItemID" ColumnName="ItemID" />
                <ScalarProperty Name="Title" ColumnName="Title" />
                <ScalarProperty Name="Description" ColumnName="Description" />
                <ScalarProperty Name="ReportFolder" ColumnName="ReportFolder" />
                <ScalarProperty Name="ReportName" ColumnName="ReportName" />
                <ScalarProperty Name="IsCancelled" ColumnName="IsCancelled" />
                <ScalarProperty Name="CreatedByID" ColumnName="CreatedByID" />
                <ScalarProperty Name="CreatedDate" ColumnName="CreatedDate" />
                <ScalarProperty Name="UpdatedByID" ColumnName="UpdatedByID" />
                <ScalarProperty Name="UpdatedDate" ColumnName="UpdatedDate" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="Securities">
            <EntityTypeMapping TypeName="Model.Security">
              <MappingFragment StoreEntitySet="Security">
                <ScalarProperty Name="ReportDefinitionID" ColumnName="ReportDefinitionID" />
                <ScalarProperty Name="RoleID" ColumnName="RoleID" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="ReportServers">
            <EntityTypeMapping TypeName="Model.ReportServer">
              <MappingFragment StoreEntitySet="Servers">
                <ScalarProperty Name="ReportServerID" ColumnName="ReportServerID" />
                <ScalarProperty Name="Title" ColumnName="Title" />
                <ScalarProperty Name="Url" ColumnName="Url" />
                <ScalarProperty Name="ServiceFileName" ColumnName="ServiceFileName" />
                <ScalarProperty Name="AuthTypeID" ColumnName="AuthTypeID" />
                <ScalarProperty Name="AuthDomain" ColumnName="AuthDomain" />
                <ScalarProperty Name="AuthUser" ColumnName="AuthUser" />
                <ScalarProperty Name="AuthPassword" ColumnName="AuthPassword" />
                <ScalarProperty Name="IsCancelled" ColumnName="IsCancelled" />
                <ScalarProperty Name="CreatedByID" ColumnName="CreatedByID" />
                <ScalarProperty Name="CreatedDate" ColumnName="CreatedDate" />
                <ScalarProperty Name="UpdatedByID" ColumnName="UpdatedByID" />
                <ScalarProperty Name="UpdatedDate" ColumnName="UpdatedDate" />
              </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="CodeGenerationStrategy" Value="None" />
      </DesignerInfoPropertySet>
    </Options>
    <!-- Diagram content (shape and connector positions) -->
    <Diagrams>
      <Diagram Name="ReportModel">
        <EntityTypeShape EntityType="Model.ReportGroup" Width="1.875" PointX="0.5" PointY="0.5" Height="1.7879850260416674" IsExpanded="true" />
        <EntityTypeShape EntityType="Model.ReportDefinitionCriteria" Width="2.25" PointX="6.125" PointY="0.75" Height="2.9417936197916656" IsExpanded="true" />
        <EntityTypeShape EntityType="Model.ReportDefinition" Width="2" PointX="3.25" PointY="1.25" Height="4.480205078125" IsExpanded="true" />
        <EntityTypeShape EntityType="Model.Security" Width="2.25" PointX="6.125" PointY="4.25" Height="1.5956835937499996" IsExpanded="true" />
        <EntityTypeShape EntityType="Model.ReportServer" Width="1.875" PointX="0.5" PointY="3" Height="3.7109993489583317" IsExpanded="true" />
        <AssociationConnector Association="Model.FK_ReportDefinitions_Groups" ManuallyRouted="false">
          <ConnectorPoint PointX="2.375" PointY="1.7689925130208337" />
          <ConnectorPoint PointX="3.25" PointY="1.7689925130208337" />
        </AssociationConnector>
        <AssociationConnector Association="Model.FK_ReportDefinitionCriteria_ReportDefinitions" ManuallyRouted="false">
          <ConnectorPoint PointX="5.25" PointY="2.4708968098958328" />
          <ConnectorPoint PointX="6.125" PointY="2.4708968098958328" />
        </AssociationConnector>
        <AssociationConnector Association="Model.FK_ReportDefinitions_Servers" ManuallyRouted="false">
          <ConnectorPoint PointX="2.375" PointY="4.3651025390625" />
          <ConnectorPoint PointX="3.25" PointY="4.3651025390625" />
        </AssociationConnector>
        <AssociationConnector Association="Model.FK_Security_ReportDefinitions" ManuallyRouted="false">
          <ConnectorPoint PointX="5.25" PointY="4.9901025390625" />
          <ConnectorPoint PointX="6.125" PointY="4.9901025390625" />
        </AssociationConnector>
      </Diagram>
    </Diagrams>
  </Designer>
</edmx:Edmx>