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.
The default value of CommandTimeout is 30s. You can modify it according to your needs.
In your
Program.cs
file (.Net 6),Or you can set it through your context.
Related Post:
What is the difference between SqlCommand.CommandTimeout and SqlConnection.ConnectionTimeout?