1

在我的 MVC 应用程序中,我有一个共享的 _Layout.cshtml 文件,该文件显示用户的菜单

在该视图上,我想显示来自 UserProfile 实体的信息 - 使用 SimpleMembership 创建并因此链接到可以在 _Layout 页面中直接访问的 IPrincipal 用户。

所以我写了一个扩展方法来调用我的 UnitOfWork,看起来像这样:

    public static UserProfile GetUserProfile(this IPrincipal u)
    {
        IUnitOfWork uow = new UnitOfWork();
        return uow.UserRepository.GetUserProfile(u);            
    }

现在这可行,但它闻起来并不好,因为我正在实例化 UnitOfWork 而不是注入它....

我有一个看起来像这样的 BaseController 类:

public class BaseController : Controller
{
    // NOT NECESSARY TO DISPOSE THE UOW IN OUR CONTROLLERS
    // Recall that we let IoC inject the Uow into our controllers
    // We can depend upon on IoC to dispose the UoW for us
    protected MvcApplication.Data.Contracts.IUnitOfWork _Uow { get; set; }
}

(我的一些代码基于这个答案:https ://stackoverflow.com/a/12820444/150342 )

我使用包管理器安装 StructureMap 并且此代码在应用程序启动时运行:

public static class StructuremapMvc
{
    public static void Start()
    {
        IContainer container = IoC.Initialize();
        DependencyResolver.SetResolver(new StructureMapDependencyResolver(container));
        GlobalConfiguration.Configuration.DependencyResolver = new StructureMapDependencyResolver(container);
    }
}

据我了解,这会将我的具体 UnitOfWork 类注入到我的控制器中,并处理 UnitOfWork 的处置。

不幸的是,就我对 IoC 的理解而言,如果我想从控制器以外的其他地方访问 UnitOfWork,或者我是否可以将信息从控制器传递给 _Layout,我不确定该怎么做。我想将数据放到 _Layout 页面上,但我对如何从那里访问 UnitOfWork 或如何将 UnitOfWork 注入扩展方法感到困惑

4

1 回答 1

2

将数据放入 ViewBag 并让 _Layout 视图从那里拉取数据。

你可以把这个放在你的BaseController

protected override void Initialize(System.Web.Routing.RequestContext requestContext)
{
    base.Initialize(requestContext);
    var u = requestContext.HttpContext.User;
    var data = _UoW.UserRepository.GetUserProfile(u);

    ViewBag.UserData = data;
}

在您的布局视图中,您呈现数据:

@ViewBag.UserData 
于 2013-09-14T11:40:26.490 回答