当我尝试使用实体框架将值插入到asp.net mvc4
中的数据库时,它会抛出异常。帮我解决这个异常。
错误消息为:An error occurred while updating the entries. See the inner exception for details
。
这是我在控制器中的代码
{
[HttpPost]
public ActionResult rated(FormCollection form)
{
int ratedvalue = Convert.ToInt32(form["rating"]);
using (var db = new FSLIndiaLatest.Models.FSLWebEntitiesContext())
{
var value = new FSLIndiaLatest.Models.Tbl_Rating();
value.Rating = Convert.ToInt32(ratedvalue);
value.CreatedOn = DateTime.Now;
value.CreatedBy = 2;
db.Tbl_Rating.Add(value);
db.SaveChanges();
return View(form);
}
}
}