如何使ProfileCommon与MVC一起玩得很好

时间:2011-03-24 19:29:03

标签: asp.net-mvc-3

我正在将webforms网站转换为MVC-3,并且正在尝试将我的UserProfileModel传递给视图。然而;我从我的自定义提供程序

派生我的UserProfileModel类
public class UserProfileModel:DFW.Providers.ProfileCommon
{
    public UserProfileModel(string userName,bool IsAuthenticated)
    {
        this.Initialize(userName, IsAuthenticated);

    }

这是问题,ProfileCommon不是Enumerable因此我不能做

@foreach (var item in Model) {
}

使用MVC很好地完成这个游戏的简单方法是什么?

1 个答案:

答案 0 :(得分:0)

没有,提供者模型不是很好,不支持构造函数注入。