how to solve timeout issue occured while updating the entries in database

4k Views Asked by At

A timeout error occurred while registering the record or updating the records in the database.

"The timeout period elapsed prior to completion of the operation or the server is not responding."

Application throw DbUpdateException error on running the update API.

Error below -

  • Microsoft.EntityFrameworkCore.DbUpdateException
  • System.ComponentModel.Win32Exception (258): The wait operation timed out.
1

There are 1 best solutions below

0
On

The default value of CommandTimeout is 30s. You can modify it according to your needs.

In your Program.cs file (.Net 6),

builder.Services.AddDbContext<ApplicationDbContext>(
    options =>options.UseSqlServer(connectionString, op => 
        op.CommandTimeout(60)));

Or you can set it through your context.

Related Post:

What is the difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout?