こんにちは、これは私の以前の質問に関連しています。
EFCodeFirst : 2 つのオブジェクトが異なる ObjectContext オブジェクトに関連付けられているため、2 つのオブジェクト間の関係を定義できません
前の質問への回答で示した参照に基づいて、Ninject と MVC を使用する場合、DbContext の使用を正しく実装する方法がわかりません。これを行う方法の推奨例はありますか? ありがとう。
ここでこの1つの例を見ました:Ninjectを使用するときにDBContextを処理する方法 ですが、これが私のプロジェクトの現在の構造にどのように適合するかわかりませんでした。
これは私のリポジトリとインターフェイスの例です。他のリポジトリはほとんど同じで、現時点ではすべて新しいコンテキストを作成しています。これを変更してコンテキストをリポジトリに注入する可能性がありますが、これで十分だとは思いません.
public interface IRepository<T> where T : Entity {
IQueryable<T> All { get; }
T Find(int id);
void InsertOrUpdate(T entity);
void Delete(int id);
void Save();
}
public class RecipeRepository : IRepository<Recipe>
{
private EatRateShareDbContext context = new EatRateShareDbContext();
public IQueryable<Recipe> All
{
get { return context.Recipes; }
}
public Recipe Find(int id)
{
return context.Recipes.Find(id);
}
public void InsertOrUpdate(Recipe recipe)
{
if (recipe.Id == default(int))
{
// New entity
context.Recipes.Add(recipe);
} else
{
// Existing entity
context.Entry(recipe).State = EntityState.Modified;
}
}
public void Delete(int id)
{
var recipe = context.Recipes.Find(id);
context.Recipes.Remove(recipe);
}
public void Save()
{
try
{
context.SaveChanges();
}
catch (DbEntityValidationException databaseException)
{
foreach (var validationErrors in databaseException.EntityValidationErrors)
{
foreach (var validationError in validationErrors.ValidationErrors)
{
Trace.TraceInformation("Property: {0} Error: {1}", validationError.PropertyName, validationError.ErrorMessage);
}
}
}
}
}
これは私のDbContextです
public class ERSDbContext : DbContext
{
public DbSet<Recipe> Recipes { get; set; }
public DbSet<Ingredient> Ingredients { get; set; }
public DbSet<Review> Reviews { get; set; }
public DbSet<Course> Courses { get; set; }
public DbSet<Cuisine> Cuisines { get; set; }
public DbSet<Member> Members { get; set; }
public DbSet<Step> Steps { get; set; }
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
// have to specify these mappings using the EF Fluent API otherwise I end up with
// the foreign key fields being placed inside the Recipe and Member tables, which wouldn't
// give a many-to-many relationship
modelBuilder.Entity<Recipe>()
.HasMany(r => r.Members)
.WithMany(m => m.Recipes)
.Map(x => {
x.ToTable("Cookbooks"); // using a mapping table for a many-to-many relationship
x.MapLeftKey("RecipeId");
x.MapRightKey("MemberId");
});
modelBuilder.Entity<Recipe>()
.HasRequired(x => x.Author)
.WithMany()
.WillCascadeOnDelete(false);
}
}
示されているように、Ninject を使用してリポジトリをコントローラーに挿入します。
public class RecipesController : Controller
{
private readonly IRepository<Member> memberRepository;
private readonly IRepository<Course> courseRepository;
private readonly IRepository<Cuisine> cuisineRepository;
private readonly IRepository<Recipe> recipeRepository;
public RecipesController(IRepository<Member> memberRepository, IRepository<Course> courseRepository, IRepository<Cuisine> cuisineRepository, IRepository<Recipe> recipeRepository)
{
this.memberRepository = memberRepository;
this.courseRepository = courseRepository;
this.cuisineRepository = cuisineRepository;
this.recipeRepository = recipeRepository;
}
...
}
Ninject の場合、NinjectWebCommon クラスを作成する Nuget プラグインを使用しています。以下は現在のバインディングです。
private static void RegisterServices(IKernel kernel)
{
kernel.Bind<IRepository<Recipe>>().To<RecipeRepository>();
kernel.Bind<IRepository<Member>>().To<MemberRepository>();
kernel.Bind<IRepository<Cuisine>>().To<CuisineRepository>();
kernel.Bind<IRepository<Course>>().To<CourseRepository>();
kernel.Bind<IRepository<Review>>().To<ReviewRepository>();
}