DbUpdateException "Невозможно сохранить изменения" - PullRequest
0 голосов
/ 03 июля 2018

Что я пытаюсь сделать:

Я пытаюсь сохранить несколько описаний кандидатов, и каждый из них показывает их в представлении описания соответственно.

Вот мой контроллер:

public IActionResult CandidateHistory(int Id)
    {

        using (var applicationcontext = new ApplicationContext())
        {
            var candidate = 
  applicationcontext.Candidates.AsNoTracking().Include(q => 
         q.DescriptionList).Single(q => q.Id == Id);
            if (candidate == null)
            {
                return NotFound();
            }
            applicationcontext.Candidates.Add(candidate);

            return View(candidate);
        }
    }

    [HttpPost, ActionName("CandidateHistory")]
    [ValidateAntiForgeryToken]
    public IActionResult CandidateHistoryPost([Bind("Description, Title, 
     DateOfDescription, Saving")]Candidate candidate, int Id)
    {
        try
        {
            if (ModelState.IsValid)
            {
                using (var applicationContext = new ApplicationContext())
                {
                    var candidates = 
        applicationContext.Candidates.AsNoTracking().Include(q => 
           q.DescriptionList).Single(q => q.Id == Id);
                    //candidates.Description = candidate.Description;
                    //candidates.Saving = candidate.Saving;
                    //candidates.Title = candidate.Title;
                    //candidates.DateOfDescription = 
              candidate.DateOfDescription;
                    //candidate.DescriptionList.Add(candidates);


                    var guardar = candidate;
                    candidates.Saving = guardar.Saving;
                    candidates.Title = guardar.Title;
                    candidates.Description = guardar.Description;
                    candidates.DateOfDescription = guardar.DateOfDescription;




                    candidate = candidates;
                    candidates.DescriptionList.Add(candidate);
                    candidate.DescriptionList = candidates.DescriptionList;
                    applicationContext.Candidates.Add(candidate);
                    applicationContext.SaveChanges();

                    return RedirectToAction("CandidateHistory");
                }
            }
        }
        catch (DbUpdateException /* ex */)
        {
            //Log the error (uncomment ex variable name and write a log.
            ModelState.AddModelError("", "Unable to save changes. " +
                "Try again, and if the problem persists " +
                "see your system administrator.");
        }

        return View(candidate);
    }

А также вот моя модель кандидата:

 public class Candidate : BaseEntity
 {
    public int Id { get; set; }
    public string Name { get; set; }
    public int Number { get; set; }
    public string ProfileText { get; set; }
    public Byte[] CV { get; set; }
    public string CVNAME { get; set; }
    public List<Profile> ProfileList { get; set; }
    public String Description { get; set; }
    public Boolean Saving { get; set; }
    public string Title { get; set; }
    public DateTime DateOfDescription { get; set; }
    public List<Candidate> DescriptionList { get; set; }
    public Candidate()
    {
        DescriptionList = new List<Candidate>();
    }

 }

А вот мой взгляд:

 @model HCCBPOHR.Data.Candidate

  @{
 ViewData["Title"] = "CandidateHistory";
 }

 <h2>Canidate - @Model.Name</h2>

  <label>History</label>
 <hr />

  <div class="panel panel-default">
 <div class="panel-heading">
    <i class="fa fa-clock-o fa-fw"></i> History Of @Model.Name
 </div>
 <div class="panel-body">
    @foreach (var Description in Model.DescriptionList)
    {
        @if (Model.Saving == true)
        {
            <ul class="timeline">
                <li class="timeline">
                    <div class="timeline-badge">
                        <i class="fa fa-check"></i>
                    </div>
                    <div class="timeline-panel">
                        <div class="timeline-heading">
                            <h4 class="timeline-title">@Model.Title</h4>
                            <p>
                                <small class="text-muted"><i class="fa fa- 
  clock-o"></i> @Model.DateOfDescription.ToShortDateString()</small>
                            </p>
                        </div>
                        <div class="timeline-body">
                            <p>@Model.Description</p>
                        </div>
                    </div>
                </li>
            </ul>
        }
        @if (Model.Saving == false)
        {
            <ul class="timeline">
                <li class="timeline-inverted">
                    <div class="timeline-badge">
                        <i class="fa fa-check"></i>
                    </div>
                    <div class="timeline-panel">
                        <div class="timeline-heading">
                            <h4 class="timeline-title">Title</h4>
                            <p>
                                <small class="text-muted"><i class="fa fa- 
  clock-o"></i> @Model.DateOfDescription.ToShortDateString()</small>
                            </p>
                        </div>
                        <div class="timeline-body">
                            <p>@Model.Description</p>
                        </div>
                    </div>
                </li>
            </ul>
        }
        }
   </div>
  </div>
    <button type="button" class="btn btn-primary" data-toggle="modal" data- 
   target="#exampleModal" data-whatever="@Model.Saving"> Add History 
      Description</button>
   <div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" 
  aria- 
  labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog" role="document">
    <div class="modal-content">
        <div class="modal-body">
            <form asp-action="CandidateHistory">
                <div asp-validation-summary="ModelOnly" class="text-danger"> 
  </div>
                <div class="form-group">
                    <label asp-for="Title" class="control-label"></label>
                    <input asp-for="Title" class="form-control" />
                    <span asp-validation-for="Title" class="text-danger"> 
           </span>
                 </div>
                <div class="form-group">
                    <label asp-for="Description" class="control-label"> 
                 </label>
                    <input asp-for="Description" class="form-control" />
                    <span asp-validation-for="Description" class="text- 
              danger"></span>
                </div>
                <div class="form-group">
                    <label>Selects</label>
                    <select asp-for="Saving" class="form-control">
                        <option value="false">Candidate </option>
                        <option value="true">Hitachi</option>s
                    </select>
                </div>
                <div class="form-group">
                    <label asp-for="DateOfDescription" class="form-group" > 
           </label>
                    <input asp-for="DateOfDescription" class="form-group" />
                </div>
                <div class="form-group">
                    <input type="submit" value="Create" class="btn btn- 
       default" />
                </div>
            </form>
        </div>
        <div class="modal-footer">
            <button type="button" class="btn btn-secondary" data- 
     dismiss="modal">Close</button>

        </div>
    </div>
   </div>
   </div>

Метод Catch вызывает исключение, и я не понимаю, почему.

   catch (DbUpdateException /* ex */)
            {
                //Log the error (uncomment ex variable name and write a log.
                ModelState.AddModelError("", "Unable to save changes. " +
                    "Try again, and if the problem persists " +
                    "see your system administrator.");
            }

Исключение составляет:

{Microsoft.EntityFrameworkCore.DbUpdateException: при обновлении записей произошла ошибка. Смотрите внутреннее исключение для деталей. ---> System.Data.SqlClient.SqlException: невозможно вставить явное значение для столбца идентификаторов в таблице «Кандидаты», если для параметра IDENTITY_INSERT установлено значение OFF. в System.Data.SqlClient.SqlConnection.OnError (исключение SqlException, логическое breakConnection, действие 1 wrapCloseInAction) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection, Action 1 wrapCloseInAction) в System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning (TdsParserStateObject stateObj, логический callerHasConnectionLock, логический asyncClose) в System.Data.SqlClient.TdsParser.TryRun (RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj, Boolean) в System.Data.SqlClient.SqlDataReader.TryConsumeMetaData () в System.Data.SqlClient.SqlDataReader.get_MetaData () в System.Data.SqlClient.SqlCommand.FinishExecuteReader (SqlDataReader ds, RunBehavior runBehavior, String resetOptionsString) в System.Data.SqlClient.SqlCommand.RunExecuteReaderTds (CommandBehavior cmdBehavior, RunBehavior runBehavior, логический returnStream, логический асинхронный, тайм-аут Int32, задача и задача, логический асинхронный ввод, SqlDataReader) в System.Data.SqlClient.SqlCommand.RunExecuteReader (CommandBehavior cmdBehavior, RunBehavior runBehavior, логический returnStream, TaskCompletionSource 1 completion, Int32 timeout, Task& task, Boolean asyncWrite, String method) at System.Data.SqlClient.SqlCommand.ExecuteReader(CommandBehavior behavior) at System.Data.SqlClient.SqlCommand.ExecuteDbDataReader(CommandBehavior behavior) at Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.Execute(IRelationalConnection connection, DbCommandMethod executeMethod, IReadOnlyDictionary 2 параметраValues) в Microsoft.EntityFrameworkCore.Storage.Internal.RelationalCommand.ExecuteReader (соединение IRelationalConnection, параметры IReadOnlyDictionary 2 parameterValues) at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.Execute(IRelationalConnection connection) --- End of inner exception stack trace --- at Microsoft.EntityFrameworkCore.Update.ReaderModificationCommandBatch.Execute(IRelationalConnection connection) at Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.Execute(Tuple 2) в Microsoft.EntityFrameworkCore.Storage.Internal.SqlServerExecutionStrategy.Execute [TState, TResult] (состояние TState, Func 3 operation, Func 3 verifySucceeded) в Microsoft.EntityFrameworkCore.Update.Internal.BatchExecutor.Execute (IEnumerable 1 commandBatches, IRelationalConnection connection) at Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChanges(IReadOnlyList 1 recordsToSave) в Microsoft.EntityFrameworkCore.ChangeTracking.Internal.StateManager.SaveChanges (Boolean acceptAllChangesOnSuccess) в Microsoft.EntityFrameworkCore.DbContext.SaveChanges (Boolean acceptAllChangesOnSuccess) в HCCBPOHR.Web.Controllers.HomeController.CandidateHistoryPost (кандидат в кандидаты, Int32 Id) в C: \ Users \ 137258 \ Documents \ hccbpohr \ src \ Web \ Controllers \ HomeController.cs: строка 628}

1 Ответ

0 голосов
/ 03 июля 2018

В исключении написано, что An error occurred while updating the entries. See the inner exception for details. ---> System.Data.SqlClient.SqlException: Cannot insert explicit value for identity column in table 'Candidates' when IDENTITY_INSERT is set to OFF.

Это означает, что в SQL вы не можете вставить в таблицу значение первичного ключа, поскольку вы установили его в качестве ключа идентификации (например, IDENTITY(1,1)). Скорее всего, ключ будет идентификатором в вашем случае. В коде c # добавьте атрибут над полем в классе модели.

[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
public int Id{ get; set; }
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...