У меня есть представление Edit, которое редактирует данные из таблицы Movie, представление открывается без ошибок, но когда я пытаюсь сохранить изменения, появляется ошибка в db.SaveChanges ();
вот что у меня в контроллере:
public ActionResult Edit(int? Id)
{
if (Id == null)
return new HttpStatusCodeResult(HttpStatusCode.BadRequest);
MoviesData movie = db.MoviesData.Find(Id);
if (movie == null)
return HttpNotFound();
return View(movie);
}
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Edit([Bind(Include = "MovieID, MovieName, MovieCategory, MovieDescription, MovieYear")] MoviesData moviesData)
{
if(ModelState.IsValid)
{
db.Entry(moviesData).State = System.Data.Entity.EntityState.Modified;
db.SaveChanges();
return RedirectToAction("Index");
}
return View(moviesData);
И, на мой взгляд, это нормальный шаблон MVC Edit:
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>MoviesData</h4>
<hr />
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
------->@Html.HiddenFor(model => model.MovieName)
<div class="form-group">
@Html.LabelFor(model => model.MovieName, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.MovieName, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.MovieName, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.MovieDescription, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.MovieDescription, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.MovieDescription, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.MovieCategory, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.MovieCategory, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.MovieCategory, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
@Html.LabelFor(model => model.MovieYear, htmlAttributes: new { @class = "control-label col-md-2" })
<div class="col-md-10">
@Html.EditorFor(model => model.MovieYear, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.MovieYear, "", new { @class = "text-danger" })
</div>
</div>
<div class="form-group">
<div class="col-md-offset-2 col-md-10">
<input type="submit" value="Save" class="btn btn-default" />
</div>
</div>
</div>
db.SaveChanges();
выводит эту ошибку:
System.Data.Entity.Core.OptimisticConcurrencyException: Store update, insert, or delete statement affected an unexpected number of rows (0). Entities may have been modified or deleted since entities were loaded. See http://go.microsoft.com/fwlink/?LinkId=472540 for information on understanding and handling optimistic concurrency exceptions.
Я прочитал, что находится в этой ссылке, но я не очень хорошо понял, что мне делать? Кроме того, вам нужна дополнительная информация о моей программе?
Редактировать:
Модель фильма:
public class MovieViewModel
{
public int MovieID { get; set; }
public string MovieName { get; set; }
public string MovieDescription { get; set; }
public string MovieCategory { get; set; }
public string MovieYear { get; set; }
}