Entity Framework Core and Connection Resiliency
In this post, let's see some built-in features in EF Core that supports
Connection Resiliency. For example, if the connection to the database
dropped while executing a command, we might need to retry the operation. While
we can write the code to do it ourselves, EF Core out of the box supports
retry using execution strategies.
The execution strategy can be configured in the
Back
Read News