Visual Studio 2012 Express for Desktop を使用して、 http://msdn.microsoft.com/en-us/data/jj193542のビデオ チュートリアルに従おうとしています。
POCO と DbContext を作成し、いくつかのサンプル クエリを実行したところ、うまくいきました。しかし、接続文字列は提供しませんでした。では、データベースはどこにあるのでしょうか? (おそらくsdfまたはmdfファイル?)
チュートリアル中、男は SQL Server オブジェクト エクスプローラーを使用してデータベースを表示しましたが、VS Express でそのビューを見つけることができませんでした。
参考までに、生成されるデフォルトの 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=5.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
</configSections>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
</entityFramework>
</configuration>