更新条目时发生错误。有关asp.net mvc4中的详细信息,请参阅内部异常

时间:2014-02-19 07:37:14

标签: asp.net-mvc-4 entity-framework-4 asp.net-routing

当我尝试使用实体框架将值插入到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);
            }
        }
}

0 个答案:

没有答案