DbSet
データベース操作に使用される予定のクラス ライブラリ プロジェクトにを移動しようとしています。
私はこのチュートリアルに従ってCode First
/SimpleMembershipProfider
プロジェクトを進めてきました。クラスライブラリプロジェクトを介して、新しいテーブルなどで満たされたデータベースを既に取得しています。
しかし、この画像に表示されている webpages_ テーブルがありません。
これは私のデータコンテキストクラスです:
public class DataContext : DbContext
{
public DataContext() : base("DefaultConnection")
{
}
public DbSet<Orders> Orders { get; set; }
public DbSet<Appointment> Appointment { get; set; }
public DbSet<UserProfile> UserProfile { get; set; }
}
DbSet
そして、csファイルを作成するたびに。connectionString
からをコピーして、クラス ライブラリ プロジェクトweb.config
の に配置しました。app.config
ファイルは次のようになり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>
<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=.;Initial Catalog=aspnet-CodeFirst-test;Integrated Security=SSPI;" providerName="System.Data.SqlClient" />
</connectionStrings>
<system.web>
<roleManager enabled="true" defaultProvider="SimpleRoleProvider">
<providers>
<clear />
<add name="SimpleRoleProvider" type="WebMatrix.WebData.SimpleRoleProvider, WebMatrix.WebData" />
</providers>
</roleManager>
<membership defaultProvider="SimpleMembershipProvider">
<providers>
<clear />
<add name="SimpleMembershipProvider" type="WebMatrix.WebData.SimpleMembershipProvider, WebMatrix.WebData" />
</providers>
</membership>
</system.web>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="v11.0" />
</parameters>
</defaultConnectionFactory>
</entityFramework>
</configuration>
Web プロジェクトの Filters フォルダー ( class を持つInitializeSimpleMembershipAttribute
) をどうすればよいかわかりません。
webpages_
誰かがデータベースに作成されたものを取得する方法を教えてもらえますか? また、websecurity などを class lib プロジェクトに移動するにはどうすればよいですか?
前もって感謝します!