だから私はこの問題に4時間以上苦労しており、どこを見ればいいのかわかりません.
私は絶対的な初心者のためにこのチュートリアルに従います- [ADO.NET Entity Framework
チュートリアルを参照][1] [1]: http://msdn.microsoft.com/en-us/data/jj193542私のプロジェクト :Microsoft SQL Server 2012
App.Config
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<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=4.4.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework">
<parameters>
<parameter value="Data Source=sqlserver2012; Integrated Security=True; MultipleActiveResultSets=True" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>
しかし、エラーが発生し続け、このコードを使用するとエラーは次のようになります。**An error occurred while getting provider information from the database. This can be caused by Entity Framework using an incorrect connection string.**
私はまったく初めてですADO.NET Entity Framework
が、問題はおそらくdefaultConnectionFactory
構成にあります。しかし、とにかく、この問題を続ける方法と解決する方法を見つけることができません。