我尝试使用Oracle创建实体数据模型。我收到了这个错误。
我为我的解决方案安装了这些。
我还为VS 2015安装了ODT。
这些是我的参考资料。
的Web.config
<configSections>
<section name="entityFramework"
type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</configSections>
<connectionStrings>
<add name="OracleDbContext"
providerName="Oracle.ManagedDataAccess.Client"
connectionString="User Id=system;Password=myPassword;Data Source=ABC_DB" />
</connectionStrings>
<appSettings>
<add key="webpages:Version" value="3.0.0.0" />
<add key="webpages:Enabled" value="false" />
<add key="ClientValidationEnabled" value="true" />
<add key="UnobtrusiveJavaScriptEnabled" value="true" />
</appSettings>
<system.web>
<authentication mode="None" />
<compilation debug="true" targetFramework="4.5.2" />
<httpRuntime targetFramework="4.5.2" />
</system.web>
<system.webServer>
<modules>
<remove name="FormsAuthentication" />
</modules>
</system.webServer>
<runtime>
........
</runtime>
<entityFramework>
<defaultConnectionFactory
type="Oracle.ManagedDataAccess.EntityFramework.OracleConnectionFactory, Oracle.ManagedDataAccess.EntityFramework">
</defaultConnectionFactory>
<providers>
<!--<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<provider invariantName="Oracle.ManagedDataAccess.Client"
type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />-->
<provider invariantName="Oracle.ManagedDataAccess.Client"
type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</providers>
</entityFramework>
<system.codedom>
<compilers>
<compiler language="c#;cs;csharp" extension=".cs" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.CSharpCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:6 /nowarn:1659;1699;1701" />
<compiler language="vb;vbs;visualbasic;vbscript" extension=".vb" type="Microsoft.CodeDom.Providers.DotNetCompilerPlatform.VBCodeProvider, Microsoft.CodeDom.Providers.DotNetCompilerPlatform, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" warningLevel="4" compilerOptions="/langversion:14 /nowarn:41008 /define:_MYTYPE=\"Web\" /optionInfer+" />
</compilers>
</system.codedom>
<system.data>
<DbProviderFactories>
<remove invariant="Oracle.ManagedDataAccess.Client" />
<add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</DbProviderFactories>
</system.data>
<oracle.manageddataaccess.client>
<version number="*">
<dataSources>
<dataSource alias="SampleDataSource" descriptor="(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=ORCL))) " />
</dataSources>
</version>
</oracle.manageddataaccess.client>
我错过了什么?
答案 0 :(得分:8)
&#34;您的项目引用了最新版本的Entity Framework&#34; VS 2017和Oracle 12c的问题 当我们使用Oracle连接添加项目ADO.NET实体数据模型时,显示错误消息&#34;您的项目引用最新版本的实体框架...&#34;
决议步骤在这里;
将Oracle ODTwithODAC122010安装为32位
在VS2017中创建项目
从AnyCPU将Active Solution Platform更改为32位
打开工具 - &gt; Nuget PackageManager-&gt;管理解决方案的Nuget包
5-Write Browse Area&#34; ODP&#34;并安装以下程序
的Oracle。 ManagedDataAccess
Oracle.ManagedDataAccess.EntityFramework
6-打开工具 - &gt; Nuget PackageManager-&gt;包管理器控制台
7-写这个
- Install-Package EntityFramework -Version 6.1.1
and Enter
8重新启动Visual Studio以完成该过程
8 - 重新构建您的应用程序
8-添加新项目ADO.NET实体数据模型
9-如果需要,添加到Oracle的新连接(数据源= Oracle数据库(ODP.NET,托管驱动程序))
10 - 一切都好。
注意:我认为EF6.1.3不适用于VS2017和Oracle ODTwithODAC122010。但在完成所有这些过程之后,我将EF更改为EF6.1.3,它正在运行 但我不建议你。
答案 1 :(得分:2)
你必须去你的proyect - &gt;属性 - &gt;编译 - &gt;并将平台设置为x86
保存所有更改,重建,添加实体数据模型,现在它可以正常工作。
我们的工作很多次发生在我们身上!
这是因为ODT是32位,可能你的项目是在AnyCpu或x64中,你的操作系统是x64。
希望有所帮助
答案 2 :(得分:2)
我今天遇到了这个问题。然后我通过以下步骤解决了这个问题:
通常,如果我们想在实体框架中使用MySQL,我们将添加一些DLL,如MySql.Data,MySql.Data.Entity.EF6。
但我们忘记了Visual Studio需要使用MySQL的一件事。
这是在App.config / Web.config上添加配置:
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
<provider invariantName="MySql.Data.MySqlClient" type="MySql.Data.MySqlClient.MySqlProviderServices, MySql.Data.Entity.EF6, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d"></provider></providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="MySql.Data.MySqlClient" />
<add name="MySQL Data Provider" invariant="MySql.Data.MySqlClient" description=".Net Framework Data Provider for MySQL" type="MySql.Data.MySqlClient.MySqlClientFactory, MySql.Data, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" />
</DbProviderFactories>
</system.data>
然后,构建整个项目并重试。
另一种解决方案是:使用Nuget添加MySQL dll。它将在App.config / Web.config文件中添加配置
答案 3 :(得分:0)
我设法通过将实体框架更新到6.1.3,Oracle托管数据访问12.1.24160719和Oracle托管数据访问实体框架更新到12.1.2400来解决此问题。请使用nuget管理器进行更新。在此之后,它工作!!!
答案 4 :(得分:0)
我的电脑: 赢7 64位
VS 2015
Oracle服务器:
版本12G-32位
直到成功我一直尝试的事情:
-将Oracle.ManagedDataAccess.EntityFramework和Oracle.ManagedDataAccess的版本从18.3.0降级到12.2.20190115
-将Build模式从Any CPU更改为x86
-配置app.config:
<configSections>
<section name="Oracle.ManagedDataAccess.Client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.121.2.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<section name="oracle.manageddataaccess.client" type="OracleInternal.Common.ODPMSectionHandler, Oracle.ManagedDataAccess, Version=4.122.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="Oracle.ManagedDataAccess.EntityFramework.OracleConnectionFactory, Oracle.ManagedDataAccess.EntityFramework"></defaultConnectionFactory>
<providers>
<provider invariantName="Oracle.ManagedDataAccess.Client" type="Oracle.ManagedDataAccess.EntityFramework.EFOracleProviderServices, Oracle.ManagedDataAccess.EntityFramework, Version=6.122.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</providers>
</entityFramework>
<system.data>
<DbProviderFactories>
<remove invariant="Oracle.ManagedDataAccess.Client" />
<add name="ODP.NET, Managed Driver" invariant="Oracle.ManagedDataAccess.Client" description="Oracle Data Provider for .NET, Managed Driver" type="Oracle.ManagedDataAccess.Client.OracleClientFactory, Oracle.ManagedDataAccess, Version=4.122.1.0, Culture=neutral, PublicKeyToken=89b483f429c47342" />
</DbProviderFactories>
</system.data>
-已安装Nuget: Oracle.DataAccess.x86-v.2.112.1
Oracle.ManagedDataAccess.EntityFramework-v.12.2.20190115
Oracle.ManagedDataAccess-v.12.2.1100
EntityFramework-v.6.2.0
已安装的ODAC:ODTwithODAC122011.zip
答案 5 :(得分:0)
以下链接帮助我... Solve Project References
在我的情况下,重点是仔细添加引用以保持版本一致并相应地更新配置文件。
答案 6 :(得分:0)
首先,Go和Delete Model删除两个实体框架引用。
之后,添加您的模型,并将其写在包管理器控制台中:
install-package EntityFramework
答案 7 :(得分:-1)
如此处所示 下面在web.config中添加enter link description here为我解决了这个问题。
在配置文件中设置DbConfiguration类型:
<entityFramework codeConfigurationType="MySql.Data.Entity.MySqlEFConfiguration, MySql.Data.Entity.EF6">