0

DI に Ninject を使用し、IDbContext をコンストラクター パラメーターとしてリポジトリに挿入しています。「2 つのオブジェクトは異なる ObjectContext オブジェクトに関連付けられているため、2 つのオブジェクト間の関係を定義できません」というメッセージが表示されます。次のようなことをしようとするとエラーが発生します:

これは私のコントローラーのアクションメソッドです:

 public ActionResult BindSpace(int spaceId, int managerId)
    {
        Space space = _spaceService.GetSpace(spaceId);
        Manager manager = _managerService.GetManager(managerId);

        if (space != null && manager != null)
        {
            _spaceService.BindManager(space, manager);
        }

        return RedirectToAction("GetSpaceBindingForm", new { id = space.Id });
    }

これはサービスメソッドです:

public void BindManager(Space space, Manager manager)
    {
        if (space != null && manager != null)
        {
            space.Managers.Add(manager);
            _spaceRepo.Update(space);
        }
    }

関連のないエンティティの追加と更新中に問題はありませんでした。

私が使用しても問題はありません:

ninjectKernel.Bind<IDbContext>().To<SPBSObjectContext>().InSingletonScope().WithConstructorArgument("nameOrConnectionString", "ShoppingPointBrowsingSystem");

Web を検索したところ、誰もが NinjectModule 抽象基本クラスを実装して使用していますが、次のコードがあります。ここで何が間違っていますか?

これは注入部分です。

public class NinjectControllerFactory : DefaultControllerFactory
{
    private IKernel ninjectKernel;

    public NinjectControllerFactory()
    {
        ninjectKernel = new StandardKernel();
        AddBindings();
    }

    protected override IController GetControllerInstance(System.Web.Routing.RequestContext requestContext, Type controllerType)
    {
        return controllerType == null ? null : (IController)ninjectKernel.Get(controllerType);
    }

    private void AddBindings()
    {
        // HTTP Context
        ninjectKernel.Bind<HttpContextBase>().ToMethod(context => new HttpContextWrapper(HttpContext.Current));

        // Context
        ninjectKernel.Bind<IDbContext>().To<SPBSObjectContext>().InRequestScope().WithConstructorArgument("nameOrConnectionString", "ShoppingPointBrowsingSystem");

        // Repositories
        ninjectKernel.Bind<IRepository<Admin>>().To<EfRepository<Admin>>().InRequestScope();
        ninjectKernel.Bind<IRepository<Manager>>().To<EfRepository<Manager>>().InRequestScope();
        ninjectKernel.Bind<IRepository<ShoppingCenterSpace>>().To<EfRepository<ShoppingCenterSpace>>().InRequestScope();
        ninjectKernel.Bind<IRepository<IndependentStoreSpace>>().To<EfRepository<IndependentStoreSpace>>().InRequestScope();
        ninjectKernel.Bind<IRepository<Space>>().To<EfRepository<Space>>().InRequestScope();

        // Services
        ninjectKernel.Bind<IAuthenticationService<Admin>>().To<AdminFormsAuthenticationService>();
        ninjectKernel.Bind<IAdminService>().To<AdminService>();
        ninjectKernel.Bind<IManagerService>().To<ManagerService>();
        ninjectKernel.Bind<IShoppingCenterSpaceService>().To<ShoppingCenterSpaceService>();
        ninjectKernel.Bind<IIndependentStoreSpaceService>().To<IndependentStoreSpaceService>();
        ninjectKernel.Bind<ISpaceService>().To<SpaceService>();
    }
}
4

1 に答える 1

1

InRequestScope独自の ControllerFactory の代わりに Ninject.MVC3 拡張が必要です。それ以外の場合は、次のように動作しますInTransientScope

于 2012-06-03T23:34:57.060 に答える