我试图在“UserController”中保存一个值,但我似乎无法将它保存到数据库中。
我可以获取存储在 UserController 中的数据库值以进行更改,以便在提交值并刷新视图时,它看起来好像已存储。(即从测试更改为测试)但是,一旦我再次刷新页面,它就会返回到以前的值,并且数据库在整个过程中没有显示任何变化。
用户控制器:
var g = httpPost.VanityUrl;
DB.ppUser_editUser(g);
ppUser 中的 ppUser_editUser:
public ppUser ppUser_editUser(string personVanity)
{
ppUser user = SessionUser.LoggedInUser.Person;
user.VanityUrl = personVanity;
BaseDB.SubmitChanges();
return user;
}
编辑配置文件视图:
<div>
@Html.LabelFor(m => m.VanityUrl, "Edit your Custom Url:")
@Html.TextBoxFor(m => m.VanityUrl, new { maxlength = 15 })
</div>
基础数据库:
public partial class StudioKit_MVC3Repository : IDisposable
{
private StudioKit_MVC3ModelsDataContext _BaseDB;
public StudioKit_MVC3ModelsDataContext BaseDB
{
get
{
if (_BaseDB == null)
{
if (StudioKit_MVC3Config.EnvironmentDetail.Name == "Production")
{
_BaseDB = new StudioKit_MVC3ModelsDataContext(StudioKit_MVC3Config.EnvironmentDetail.ConnectionString);
}
else
{
var sqlConnection = new SqlConnection(StudioKit_MVC3Config.EnvironmentDetail.ConnectionString);
var conn = new ProfiledDbConnection(sqlConnection, MiniProfiler.Current);
_BaseDB = new StudioKit_MVC3ModelsDataContext(conn);
}
}
return _BaseDB;
}
}
}
编辑:我发现了问题。我将值保存到会话用户实例而不是实际数据库。我摆脱了该方法,并在控制器中简单地输入了:
ppUser check = DB.ppUser_GetUserByPersonID(model.cskPersonID);
check.VanityUrl = httpPost.VanityUrl;
DB.Save();