我正在将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很好地完成这个游戏的简单方法是什么?
答案 0 :(得分:0)
没有,提供者模型不是很好,不支持构造函数注入。