IIS Parse Error with entity framework

0

What I want to do is upload my web project that I created with entity framework, locally the project works without any problem but when I upload it to the server I get the following:

  

Error Message Nonconceptual Schema node to embed as a resource

     

Source Error: [No relevant source lines]

     

Source File: /App_Code/ExcelISBAN.edmx Line: 0

ExcelISBAN.edmx Code:

<?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="db_certificationsModel.Store" Provider="System.Data.SqlClient" ProviderManifestToken="2008" 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="tb_certification">
          <Key>
            <PropertyRef Name="idCertification" />
          </Key>
          <Property Name="idCertification" Type="int" Nullable="false" />
          <Property Name="DateC" Type="datetime" Nullable="false" />
          <Property Name="idUploadExcel" Type="int" />
          <Property Name="Estatus" Type="bit" Nullable="false" />
          <Property Name="Comments" Type="varchar" MaxLength="100" Nullable="false" />
          <Property Name="DescribeUse" Type="varchar" MaxLength="100" Nullable="false" />
          <Property Name="idResponsable" Type="int" Nullable="false" />
          <Property Name="idResponsablePass" Type="int" Nullable="false" />
        </EntityType>
        <EntityType Name="tb_email">
          <Key>
            <PropertyRef Name="idEmail" />
          </Key>
          <Property Name="idEmail" Type="int" Nullable="false" />
          <Property Name="Topic" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="MessageE" Type="varchar" MaxLength="200" Nullable="false" />
          <Property Name="RoutePdf" Type="varchar" MaxLength="50" Nullable="false" />
          <Property Name="DateE" Type="datetime" Nullable="false" />
          <Property Name="EmaildAddress" Type="varchar" MaxLength="50" Nullable="false" />
          <Property Name="idUser" Type="int" Nullable="false" />
          <Property Name="idUserRevisor" Type="int" Nullable="false" />
        </EntityType>
        <EntityType Name="tb_InCharge">
          <Key>
            <PropertyRef Name="idResponsable" />
          </Key>
          <Property Name="idResponsable" Type="int" Nullable="false" />
          <Property Name="Name" Type="varchar" MaxLength="40" Nullable="false" />
          <Property Name="FileR" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="Position" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="Area" Type="varchar" MaxLength="40" Nullable="false" />
          <Property Name="Ext" Type="int" Nullable="false" />
          <Property Name="DateInsert" Type="datetime" Nullable="false" />
        </EntityType>
        <EntityType Name="tb_InChargePass">
          <Key>
            <PropertyRef Name="idResponsablePass" />
          </Key>
          <Property Name="idResponsablePass" Type="int" Nullable="false" />
          <Property Name="Name" Type="varchar" MaxLength="40" Nullable="false" />
          <Property Name="FunctionR" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="Area" Type="varchar" MaxLength="40" Nullable="false" />
          <Property Name="Ext" Type="int" Nullable="false" />
          <Property Name="DateInsert" Type="datetime" Nullable="false" />
        </EntityType>
        <EntityType Name="tb_uploadexcel">
          <Key>
            <PropertyRef Name="idUploadExcel" />
          </Key>
          <Property Name="idUploadExcel" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
          <Property Name="UserUpload" Type="varchar" MaxLength="50" Nullable="false" />
          <Property Name="DescriptionUpload" Type="varchar" MaxLength="200" Nullable="false" />
          <Property Name="Plataform" Type="varchar" MaxLength="50" Nullable="false" />
          <Property Name="Ambient" Type="varchar" MaxLength="50" Nullable="false" />
          <Property Name="ServerE" Type="varchar" MaxLength="20" Nullable="false" />
          <Property Name="Applicative" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="ApplicationConf" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="TypeUser" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="Permission" Type="varchar" MaxLength="20" Nullable="false" />
          <Property Name="GroupE" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="FyleSystem" Type="varchar" MaxLength="20" Nullable="false" />
          <Property Name="Staus" Type="bit" Nullable="false" />
          <Property Name="Comment" Type="varchar" MaxLength="100" />
          <Property Name="Describe" Type="varchar" MaxLength="50" />
          <Property Name="Certification" Type="tinyint" Nullable="false" />
          <Property Name="DateE" Type="datetime" Nullable="false" />
          <Property Name="idUser" Type="int" />
          <Property Name="idUserRevisor" Type="int" />
        </EntityType>
        <EntityType Name="tb_user">
          <Key>
            <PropertyRef Name="idUser" />
          </Key>
          <Property Name="idUser" Type="int" StoreGeneratedPattern="Identity" Nullable="false" />
          <Property Name="Name" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="LastNameF" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="LastNameM" Type="varchar" MaxLength="30" />
          <Property Name="Age" Type="tinyint" />
          <Property Name="ProfileU" Type="varchar" MaxLength="20" Nullable="false" />
          <Property Name="RolUser" Type="varchar" MaxLength="20" Nullable="false" />
          <Property Name="Nick" Type="varchar" MaxLength="50" Nullable="false" />
          <Property Name="PasswordU" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="Email" Type="varchar" MaxLength="50" Nullable="false" />
          <Property Name="DateU" Type="datetime" Nullable="false" />
        </EntityType>
        <EntityType Name="UserRevisor">
          <Key>
            <PropertyRef Name="idUserRevisor" />
          </Key>
          <Property Name="idUserRevisor" Type="int" Nullable="false" />
          <Property Name="Name" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="LastNames" Type="varchar" MaxLength="50" Nullable="false" />
          <Property Name="ProfileUser" Type="varchar" MaxLength="20" Nullable="false" />
          <Property Name="Email" Type="varchar" MaxLength="50" />
          <Property Name="FunctionUser" Type="varchar" MaxLength="30" Nullable="false" />
          <Property Name="Area" Type="varchar" MaxLength="40" Nullable="false" />
          <Property Name="Departament" Type="varchar" MaxLength="40" Nullable="false" />
          <Property Name="DateInsert" Type="datetime" Nullable="false" />
        </EntityType>
        <EntityContainer Name="db_certificationsModelStoreContainer">
          <EntitySet Name="Fase" EntityType="Self.Fase" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="tb_certification" EntityType="Self.tb_certification" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="tb_email" EntityType="Self.tb_email" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="tb_InCharge" EntityType="Self.tb_InCharge" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="tb_InChargePass" EntityType="Self.tb_InChargePass" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="tb_uploadexcel" EntityType="Self.tb_uploadexcel" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="tb_user" EntityType="Self.tb_user" Schema="dbo" store:Type="Tables" />
          <EntitySet Name="UserRevisor" EntityType="Self.UserRevisor" Schema="dbo" store:Type="Tables" />
        </EntityContainer>
      </Schema>
    </edmx:StorageModels>
    <!-- CSDL content -->
    <edmx:ConceptualModels>
      <Schema Namespace="db_certificationsModel" 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>
        <EntityType Name="tb_certification">
          <Key>
            <PropertyRef Name="idCertification" />
          </Key>
          <Property Name="idCertification" Type="Int32" Nullable="false" />
          <Property Name="DateC" Type="DateTime" Nullable="false" Precision="3" />
          <Property Name="idUploadExcel" Type="Int32" />
          <Property Name="Estatus" Type="Boolean" Nullable="false" />
          <Property Name="Comments" Type="String" MaxLength="100" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="DescribeUse" Type="String" MaxLength="100" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="idResponsable" Type="Int32" Nullable="false" />
          <Property Name="idResponsablePass" Type="Int32" Nullable="false" />
        </EntityType>
        <EntityType Name="tb_email">
          <Key>
            <PropertyRef Name="idEmail" />
          </Key>
          <Property Name="idEmail" Type="Int32" Nullable="false" />
          <Property Name="Topic" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="MessageE" Type="String" MaxLength="200" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="RoutePdf" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="DateE" Type="DateTime" Nullable="false" Precision="3" />
          <Property Name="EmaildAddress" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="idUser" Type="Int32" Nullable="false" />
          <Property Name="idUserRevisor" Type="Int32" Nullable="false" />
        </EntityType>
        <EntityType Name="tb_InCharge">
          <Key>
            <PropertyRef Name="idResponsable" />
          </Key>
          <Property Name="idResponsable" Type="Int32" Nullable="false" />
          <Property Name="Name" Type="String" MaxLength="40" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="FileR" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Position" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Area" Type="String" MaxLength="40" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Ext" Type="Int32" Nullable="false" />
          <Property Name="DateInsert" Type="DateTime" Nullable="false" Precision="3" />
        </EntityType>
        <EntityType Name="tb_InChargePass">
          <Key>
            <PropertyRef Name="idResponsablePass" />
          </Key>
          <Property Name="idResponsablePass" Type="Int32" Nullable="false" />
          <Property Name="Name" Type="String" MaxLength="40" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="FunctionR" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Area" Type="String" MaxLength="40" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Ext" Type="Int32" Nullable="false" />
          <Property Name="DateInsert" Type="DateTime" Nullable="false" Precision="3" />
        </EntityType>
        <EntityType Name="tb_uploadexcel">
          <Key>
            <PropertyRef Name="idUploadExcel" />
          </Key>
          <Property Name="idUploadExcel" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
          <Property Name="UserUpload" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="DescriptionUpload" Type="String" MaxLength="200" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Plataform" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Ambient" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="ServerE" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Applicative" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="ApplicationConf" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="TypeUser" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Permission" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="GroupE" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="FyleSystem" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Staus" Type="Boolean" Nullable="false" />
          <Property Name="Comment" Type="String" MaxLength="100" FixedLength="false" Unicode="false" />
          <Property Name="Describe" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
          <Property Name="Certification" Type="Byte" Nullable="false" />
          <Property Name="DateE" Type="DateTime" Nullable="false" Precision="3" />
          <Property Name="idUser" Type="Int32" />
          <Property Name="idUserRevisor" Type="Int32" />
        </EntityType>
        <EntityType Name="tb_user">
          <Key>
            <PropertyRef Name="idUser" />
          </Key>
          <Property Name="idUser" Type="Int32" Nullable="false" annotation:StoreGeneratedPattern="Identity" />
          <Property Name="Name" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="LastNameF" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="LastNameM" Type="String" MaxLength="30" FixedLength="false" Unicode="false" />
          <Property Name="Age" Type="Byte" />
          <Property Name="ProfileU" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="RolUser" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Nick" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="PasswordU" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="DateU" Type="DateTime" Nullable="false" Precision="3" />
        </EntityType>
        <EntityType Name="UserRevisor">
          <Key>
            <PropertyRef Name="idUserRevisor" />
          </Key>
          <Property Name="idUserRevisor" Type="Int32" Nullable="false" />
          <Property Name="Name" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="LastNames" Type="String" MaxLength="50" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="ProfileUser" Type="String" MaxLength="20" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Email" Type="String" MaxLength="50" FixedLength="false" Unicode="false" />
          <Property Name="FunctionUser" Type="String" MaxLength="30" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Area" Type="String" MaxLength="40" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="Departament" Type="String" MaxLength="40" FixedLength="false" Unicode="false" Nullable="false" />
          <Property Name="DateInsert" Type="DateTime" Nullable="false" Precision="3" />
        </EntityType>
        <EntityContainer Name="db_certificationsEntities3" annotation:LazyLoadingEnabled="true">
          <EntitySet Name="Fase" EntityType="Self.Fase" />
          <EntitySet Name="sysdiagrams" EntityType="Self.sysdiagrams" />
          <EntitySet Name="tb_certification" EntityType="Self.tb_certification" />
          <EntitySet Name="tb_email" EntityType="Self.tb_email" />
          <EntitySet Name="tb_InCharge" EntityType="Self.tb_InCharge" />
          <EntitySet Name="tb_InChargePass" EntityType="Self.tb_InChargePass" />
          <EntitySet Name="tb_uploadexcel" EntityType="Self.tb_uploadexcel" />
          <EntitySet Name="tb_user" EntityType="Self.tb_user" />
          <EntitySet Name="UserRevisor" EntityType="Self.UserRevisor" />
        </EntityContainer>
      </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="db_certificationsModelStoreContainer" CdmEntityContainer="db_certificationsEntities3">
          <EntitySetMapping Name="Fase">
            <EntityTypeMapping TypeName="db_certificationsModel.Fase">
              <MappingFragment StoreEntitySet="Fase">
                <ScalarProperty Name="idFase" ColumnName="idFase" />
                <ScalarProperty Name="Name" ColumnName="Name" />
                <ScalarProperty Name="LevelFase" ColumnName="LevelFase" />
                <ScalarProperty Name="idUploadExcel" ColumnName="idUploadExcel" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="sysdiagrams">
            <EntityTypeMapping TypeName="db_certificationsModel.sysdiagrams">
              <MappingFragment StoreEntitySet="sysdiagrams">
                <ScalarProperty Name="name" ColumnName="name" />
                <ScalarProperty Name="principal_id" ColumnName="principal_id" />
                <ScalarProperty Name="diagram_id" ColumnName="diagram_id" />
                <ScalarProperty Name="version" ColumnName="version" />
                <ScalarProperty Name="definition" ColumnName="definition" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="tb_certification">
            <EntityTypeMapping TypeName="db_certificationsModel.tb_certification">
              <MappingFragment StoreEntitySet="tb_certification">
                <ScalarProperty Name="idCertification" ColumnName="idCertification" />
                <ScalarProperty Name="DateC" ColumnName="DateC" />
                <ScalarProperty Name="idUploadExcel" ColumnName="idUploadExcel" />
                <ScalarProperty Name="Estatus" ColumnName="Estatus" />
                <ScalarProperty Name="Comments" ColumnName="Comments" />
                <ScalarProperty Name="DescribeUse" ColumnName="DescribeUse" />
                <ScalarProperty Name="idResponsable" ColumnName="idResponsable" />
                <ScalarProperty Name="idResponsablePass" ColumnName="idResponsablePass" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="tb_email">
            <EntityTypeMapping TypeName="db_certificationsModel.tb_email">
              <MappingFragment StoreEntitySet="tb_email">
                <ScalarProperty Name="idEmail" ColumnName="idEmail" />
                <ScalarProperty Name="Topic" ColumnName="Topic" />
                <ScalarProperty Name="MessageE" ColumnName="MessageE" />
                <ScalarProperty Name="RoutePdf" ColumnName="RoutePdf" />
                <ScalarProperty Name="DateE" ColumnName="DateE" />
                <ScalarProperty Name="EmaildAddress" ColumnName="EmaildAddress" />
                <ScalarProperty Name="idUser" ColumnName="idUser" />
                <ScalarProperty Name="idUserRevisor" ColumnName="idUserRevisor" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="tb_InCharge">
            <EntityTypeMapping TypeName="db_certificationsModel.tb_InCharge">
              <MappingFragment StoreEntitySet="tb_InCharge">
                <ScalarProperty Name="idResponsable" ColumnName="idResponsable" />
                <ScalarProperty Name="Name" ColumnName="Name" />
                <ScalarProperty Name="FileR" ColumnName="FileR" />
                <ScalarProperty Name="Position" ColumnName="Position" />
                <ScalarProperty Name="Area" ColumnName="Area" />
                <ScalarProperty Name="Ext" ColumnName="Ext" />
                <ScalarProperty Name="DateInsert" ColumnName="DateInsert" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="tb_InChargePass">
            <EntityTypeMapping TypeName="db_certificationsModel.tb_InChargePass">
              <MappingFragment StoreEntitySet="tb_InChargePass">
                <ScalarProperty Name="idResponsablePass" ColumnName="idResponsablePass" />
                <ScalarProperty Name="Name" ColumnName="Name" />
                <ScalarProperty Name="FunctionR" ColumnName="FunctionR" />
                <ScalarProperty Name="Area" ColumnName="Area" />
                <ScalarProperty Name="Ext" ColumnName="Ext" />
                <ScalarProperty Name="DateInsert" ColumnName="DateInsert" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="tb_uploadexcel">
            <EntityTypeMapping TypeName="db_certificationsModel.tb_uploadexcel">
              <MappingFragment StoreEntitySet="tb_uploadexcel">
                <ScalarProperty Name="idUploadExcel" ColumnName="idUploadExcel" />
                <ScalarProperty Name="UserUpload" ColumnName="UserUpload" />
                <ScalarProperty Name="DescriptionUpload" ColumnName="DescriptionUpload" />
                <ScalarProperty Name="Plataform" ColumnName="Plataform" />
                <ScalarProperty Name="Ambient" ColumnName="Ambient" />
                <ScalarProperty Name="ServerE" ColumnName="ServerE" />
                <ScalarProperty Name="Applicative" ColumnName="Applicative" />
                <ScalarProperty Name="ApplicationConf" ColumnName="ApplicationConf" />
                <ScalarProperty Name="TypeUser" ColumnName="TypeUser" />
                <ScalarProperty Name="Permission" ColumnName="Permission" />
                <ScalarProperty Name="GroupE" ColumnName="GroupE" />
                <ScalarProperty Name="FyleSystem" ColumnName="FyleSystem" />
                <ScalarProperty Name="Staus" ColumnName="Staus" />
                <ScalarProperty Name="Comment" ColumnName="Comment" />
                <ScalarProperty Name="Describe" ColumnName="Describe" />
                <ScalarProperty Name="Certification" ColumnName="Certification" />
                <ScalarProperty Name="DateE" ColumnName="DateE" />
                <ScalarProperty Name="idUser" ColumnName="idUser" />
                <ScalarProperty Name="idUserRevisor" ColumnName="idUserRevisor" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="tb_user">
            <EntityTypeMapping TypeName="db_certificationsModel.tb_user">
              <MappingFragment StoreEntitySet="tb_user">
                <ScalarProperty Name="idUser" ColumnName="idUser" />
                <ScalarProperty Name="Name" ColumnName="Name" />
                <ScalarProperty Name="LastNameF" ColumnName="LastNameF" />
                <ScalarProperty Name="LastNameM" ColumnName="LastNameM" />
                <ScalarProperty Name="Age" ColumnName="Age" />
                <ScalarProperty Name="ProfileU" ColumnName="ProfileU" />
                <ScalarProperty Name="RolUser" ColumnName="RolUser" />
                <ScalarProperty Name="Nick" ColumnName="Nick" />
                <ScalarProperty Name="PasswordU" ColumnName="PasswordU" />
                <ScalarProperty Name="Email" ColumnName="Email" />
                <ScalarProperty Name="DateU" ColumnName="DateU" />
              </MappingFragment>
            </EntityTypeMapping>
          </EntitySetMapping>
          <EntitySetMapping Name="UserRevisor">
            <EntityTypeMapping TypeName="db_certificationsModel.UserRevisor">
              <MappingFragment StoreEntitySet="UserRevisor">
                <ScalarProperty Name="idUserRevisor" ColumnName="idUserRevisor" />
                <ScalarProperty Name="Name" ColumnName="Name" />
                <ScalarProperty Name="LastNames" ColumnName="LastNames" />
                <ScalarProperty Name="ProfileUser" ColumnName="ProfileUser" />
                <ScalarProperty Name="Email" ColumnName="Email" />
                <ScalarProperty Name="FunctionUser" ColumnName="FunctionUser" />
                <ScalarProperty Name="Area" ColumnName="Area" />
                <ScalarProperty Name="Departament" ColumnName="Departament" />
                <ScalarProperty Name="DateInsert" ColumnName="DateInsert" />
              </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="false" />
        <DesignerProperty Name="IncludeForeignKeysInModel" Value="true" />
        <DesignerProperty Name="UseLegacyProvider" Value="true" />
        <DesignerProperty Name="CodeGenerationStrategy" Value="None" />
      </DesignerInfoPropertySet>
    </Options>
    <!-- Diagram content (shape and connector positions) -->
    <Diagrams></Diagrams>
  </Designer>
</edmx:Edmx>

Code of the connection string in the web.config

<add name="db_certificationsEntities3" connectionString="metadata=res://*/App_Code.ExcelISBAN.csdl|res://*/App_Code.ExcelISBAN.ssdl|res://*/App_Code.ExcelISBAN.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=(local);initial catalog=db_certifications;integrated security=True;multipleactiveresultsets=True;application name=EntityFramework&quot;" providerName="System.Data.EntityClient" />

The server runs in .NET 4.0 and the project is the same

    
asked by David 10.10.2018 в 01:28
source

0 answers