我创建了一个扩展 ProfileBase 的类:
public class CustomerProfile : ProfileBase
{
public int CustomerID { get; set; }
public string CustomerName { get; set; }
public static CustomerProfile GetProfile()
{
return Create(Membership.GetUser().UserName) as CustomerProfile;
}
public static CustomerProfile GetProfile(string userName)
{
return Create(userName) as CustomerProfile;
}
}
如果我做:
CustomerProfile p = CustomerProfile.GetProfile();
p.CustomerID = 1;
p.Save();
下次我尝试访问当前用户的值时,它不是 1,而是 0,所以它似乎没有将它保存在数据库中。
在我的 web.config 文件中,我有以下代码段:
<profile inherits="PortalBLL.CustomerProfile">
<providers>
<add name="CustomerProfile" type="System.Web.Profile.SqlProfileProvider" applicationName="/" connectionStringName="LocalSqlServer"/>
</providers>
</profile>
我尝试了以下并且它有效,我很好奇为什么它不使用自动属性保存它。
[SettingsAllowAnonymous(false)]
public int CustomerID
{
get { return (int)base.GetPropertyValue("CustomerID");}
set { base.SetPropertyValue("CustomerID",value);}
}