I am trying to update the record of an item as follows
[HttpPost]
[ValidateAntiForgeryToken]
public async Task<IActionResult> Edit(int id, [Bind("Id,Label,Description,LessonId,Position,FileName,Format,Status")] Content content)
{
if (id != content.Id)
{
return NotFound();
}
var existingContent = await _context.Contents.FindAsync(id).ConfigureAwait(false);
if (existingContent == null)
{
return NotFound();
}
string fileToDelete = null;
if (ModelState.IsValid)
{
try
{
if (Request.Form.Files["FileName"] != null)
{
IFormFile uploadedFile = Request.Form.Files["FileName"];
var lesson_mimetype = uploadedFile.ContentType;
string[] extensions = new string[] { ".jpeg", ".jpg", ".gif", ".png", ".mp4", ".mp3", ".pdf" };
ResponseMsg fileTypeValidationMsg = FileUploadHelper.ValidateFileExtension(uploadedFile, extensions);
if (!fileTypeValidationMsg.ResponseStatus)
{
ModelState.AddModelError("FileName", fileTypeValidationMsg.ResponseDescription);
}
ResponseMsg filesizeValidationMsg = FileUploadHelper.ValidateFilesize(uploadedFile, 200);
if (!filesizeValidationMsg.ResponseStatus)
{
ModelState.AddModelError("FileName", filesizeValidationMsg.ResponseDescription);
}
if (content.Format == ResourceFormat.Text)
{
string desiredUploadDirectory = "TextResources";
string lesson_file_name = await uploadHelper.SaveFileAsync(Request.Form.Files["FileName"], desiredUploadDirectory).ConfigureAwait(false);
existingContent.TextFileUrl = desiredUploadDirectory + "/" + lesson_file_name;
existingContent.FileName = lesson_file_name;
fileToDelete = existingContent.TextFileUrl;
}
else
{
string desiredUploadDirectory = "MultimediaResources";
string lesson_file_name = await uploadHelper.SaveFileAsync(Request.Form.Files["FileName"], desiredUploadDirectory).ConfigureAwait(false);
existingContent.MultiMediaFileUrl = desiredUploadDirectory + "/" + lesson_file_name;
existingContent.FileName = lesson_file_name;
fileToDelete = existingContent.MultiMediaFileUrl;
}
}
existingContent.LastUpdated = DateTime.Now;
existingContent.Label = content.Label;
existingContent.Description = content.Description;
existingContent.LessonId = content.LessonId;
existingContent.Position = content.Position;
existingContent.Status = content.Status;
existingContent.Format = content.Format;
//_context.Update(existingContent); Now removed for the code to work
await _context.SaveChangesAsync().ConfigureAwait(false);
if (fileToDelete != null)
{
System.IO.File.Delete(fileToDelete);
}
return RedirectToAction(nameof(Index));
}
catch (Exception e)
{
ModelState.AddModelError("", e.Message);
}
}
ViewData["LessonId"] = new SelectList(_context.Lessons, "Id", "Label", content.LessonId);
return View(content);
}
But the problem is that when I submit the form for the update, I get the following error message
The instance of entity type 'Content' cannot be tracked because another instance with the same key value for {'Id'} is already being tracked. When attaching existing entities, ensure that only one entity instance with a given key value is attached. Consider using 'DbContextOptionsBuilder.EnableSensitiveDataLogging' to see the conflicting key values.
I do not know how to resolve this. I will appreciate any guide please.