Oracle ODP.Net で Code First EF を使用しており、VS2012 内で「EF Powertools Beta 3」を介してビューを再生成しようとしています。
最近、以前はなかったビュー生成でエラーが発生し始めたので、エラーがOracleではなくSQL Serverに関連しているため、構成が間違っていると推測しています。
完全なエラーは次のように与えられます。
System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. --->
System.Data.ProviderIncompatibleException: An error occurred while getting provider information from the database. This can be caused by Entity Framework using an incorrect connection string. Check the inner exceptions for details and ensure that the connection string is correct. --->
System.Data.ProviderIncompatibleException: The provider did not return a ProviderManifestToken string. --->
System.Data.SqlClient.SqlException: A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
私の現在のapp.configは次のとおりです。
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<dataConfiguration defaultDatabase="STD" />
<connectionStrings>
<add name="STD" connectionString="Data Source=localhost:1521/ora10g01;Persist Security Info=false;User ID=user;Password=pass;Connection Timeout=30;Decr Pool Size=1;Incr Pool Size=5;Min Pool Size=1;Max Pool Size=20;Pooling=true;" />
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="STDConnectionFactory, STD.DataAccess">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>
誰かが私が間違っている設定のビットについて何か考えを持っていますか?