Closed keerthirajap closed 1 year ago
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Any updates?
Hi @keerthirajap in my case I've been swamped with my day job, so ive had no bandwidth to take a look, I see you posted a snippet, but do you have a repro prj where we could emulate the behavior?
Will create a repo and get back to you.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Feel free to reopen if you manage to generate a repro.
ReliableConnection and Azure Cloud Databases retry logic not working with AsParallel and Auto Interface Implementation
Startup.cs file
` public class Startup { public void ConfigureServices(IServiceCollection services) { var strategy = new RetryStrategy();
} `
IUserRepository.cs
` public interface IUserRepository {
`
UserController.cs
public class UserController : ControllerBase { public UserController(IUserRepository userRepository) { this._userRepository = userRepository; } }