asp.net-mvc – 无法更改关系,因为一个或多个外键属性在MVC 4中不可为空
|
点击保存(更新)我的表单后,我收到此错误:
这是我的控制器(案例“保存”在swich couse问题): [HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit(UserModel userModel,string act = null,int idx = 0)
{
using (var dbContext = new userDbEntities())
{
if (userModel.User == null)
{
userModel.User = new UsersTable();
}
var newUser = userModel.User.userID == 0;
userModel.CustomTypes = dbContext.CustomTypes.ToList();
switch (act)
{
case "addcustom":
userModel.User.CustomerTables.Add(new CustomerTable
{
CustomType = new CustomType(),UsersTable = userModel.User
});
break;
case "deletecustom":
userModel.User.CustomerTables.RemoveAt(idx);
break;
case "save":
foreach (var customer in userModel.User.CustomerTables)
{
customer.CustomType = dbContext.CustomTypes.Find(customer.CustomType.Id_NewCustomerType);
}
var dbUser = dbContext.UsersTables.Find(userModel.User.userID);
dbUser.TimeZoneId = userModel.User.TimeZoneId;
foreach (var custom in userModel.User.CustomerTables)
{
if (custom.CustomerID == 0)
dbUser.CustomerTables.Add(custom);
}
foreach (var custom in dbUser.CustomerTables.ToList())
{
var modelCustom =
userModel.User.CustomerTables.FirstOrDefault(o => o.CustomerID == custom.CustomerID);
if (modelCustom != null) //update it
{
custom.CustomType =
dbContext.CustomTypes.Find(modelCustom.CustomType.Id_NewCustomerType);
}
if (userModel.User.CustomerTables.All(o => o.CustomerID != custom.CustomerID))
dbUser.CustomerTables.Remove(custom);
}
dbContext.SaveChanges();
break;
} // end switch statements
return View("Edit",userModel);
}
}
任何想法是什么错误… 解决方法尝试如下所示.foreach (var child in modifiedParent.ChildItems)
{
context.Childs.Attach(child);
context.Entry(child).State = EntityState.Modified;
}
context.SaveChanges();
请参阅以下链接. http://social.msdn.microsoft.com/Forums/en-US/1833117c-7a93-4b69-a133-b7fd764db810/the-operation-failed-the-relationship-could-not-be-changed-because-one-or-more-of-the-foreignkey?forum=adodotnetentityframework (编辑:台州站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
- 在使用ASP.NET会话时是否可以强制请求并发?
- asp.net – 如何从复选框列表中获取最新的选定值?
- .net – DNU发布 – 来自MSBuild的no-source
- ASP.Net – AJAX UpdatePanel中的Javascript
- 如何重定向到ASP.NET MVC中的调用页面?
- asp.net-mvc-4 – .net 4.5 ASP.Net web API JSONP支持
- asp.net – Ajax上的Identity Server 3 – 401而不是302
- asp.net-mvc-4 – 全局过滤器MVC 4的执行顺序是什么
- asp.net – 我如何使用AJAX来确定用户的会话是否已过期,然后
- ASP.NET成员资格 – 让用户使用以前的密码
- ASP.NET网站管理系统退出 清除浏览器缓存,Sessio
- asp.net – IIS Web Garden中的Singleton对象
- asp.net-mvc-3 – RedirectResult Object作为URL
- asp.net-mvc-3 – 如何在本地测试时禁用elmah发送
- asp.net – 访问asp:从代码背后的内容
- asp.net-mvc – 在MVC命令,优先级和功能问题中授
- asp.net简单生成XML文件的方法
- asp.net-mvc-4 – MVC4捆绑GZIP和头文件
- asp.net – XMLHTTP请求的经典ASP错误
- asp.net-mvc – ASP.NET MVC:部分知道它是否是从
