在具有实体框架的新MVC 3应用程序中使用ProfileProvider是一个坏主意吗?

时间:2011-04-13 04:16:15

标签: c# asp.net-mvc profile asp.net-profiles

我一直在尝试使用实体框架将自定义ProfileProvider类添加到我的MVC 3应用程序中。我注意到每次尝试执行以下操作时都调用GetPropertyValues:

profile.FirstName = viewModel.FirstName;

由于某种原因,我无法看到更新数据库中的值,这是我到目前为止所设置的。我一直在大致遵循本教程:http://www.davidhayden.com/blog/dave/archive/2007/10/30/CreateCustomProfileProviderASPNET2UsingLINQToSQL.aspx

<profile enabled="true" defaultProvider="EfProfileProvider" inherits="Data.BOHProfile" automaticSaveEnabled="true">
    <providers>
        <clear />
        <add name="EfProfileProvider" type="Data.Providers.EfProfileProvider" connectionStringName="BOHEntities" applicationName="BOH" />
    </providers>
</profile>

个人资料类:

public class BOHProfile : ProfileBase, IBOHProfile
{
    public virtual string FirstName
    {
        get { return base["FirstName"] as string; }
        set { base["FirstName"] = value; }
    }

    public virtual string LastName
    {
        get { return base["LastName"] as string; }
        set { base["LastName"] = value; }
    }

    public virtual string City
    {
        get { return base["City"] as string; }
        set { base["City"] = value; }
    }

    public static BOHProfile CurrentUser()
    {
        return (BOHProfile)(ProfileBase.Create(Membership.GetUser().UserName));
    }

    public static BOHProfile CurrentUser(string userName)
    {
        return (BOHProfile)(ProfileBase.Create(userName));
    }
}

实际提供者中的代码:

    public override SettingsPropertyValueCollection GetPropertyValues(SettingsContext context, SettingsPropertyCollection collection)
    {   
        var uow = new EfUnitOfWork();
        var profileRepo = new ProfileRepository(new EfRepository<Profile>(), uow);
        var data = profileRepo.FetchProfileData(context["UserName"].ToString(), ApplicationName);

        return data != null ? ProviderUtility.ConvertToSettingsPropertyValueCollection(data) : null;
    }

    public override void SetPropertyValues(SettingsContext context, SettingsPropertyValueCollection collection)
    {
        var data = ProviderUtility.ConvertFromSettingsPropertyValueCollection(collection);
        var uow = new EfUnitOfWork();
        var profileRepo = new ProfileRepository(new EfRepository<Profile>(), uow);

        profileRepo.SaveProfileData(context["UserName"].ToString(), ApplicationName, data);
        profileRepo.Save();
    }

也许我没有得到配置文件提供程序的重点,但似乎我可以创建一个类来获取和设置我的配置文件表中的数据,或者是否有一些我没看到我可以当我有这个配置文件信息设置时,可能在控制器中使用?

1 个答案:

答案 0 :(得分:0)

我对我当前的MVC3应用程序采用了相同的思路,并最终放弃了将MembershipProvider集成到其中。我想的越多,我对MembershipProvider的使用就越少......这可能就是API多年来没有更新的原因:)。