Alternative to ReliableSqlConnection for async Azure SQL calls

Viewed 1252

We are currently using ReliableSqlConnection for all calls to our Azure SQL database. This works fine. But unfortunately the Enterprise Library is from 2013 and it seems not to be developed anymore. But the main issue is, that async db calls are not supported.

I've been searching SO and other places, but the only thing I could find so far was Polly. And even Polly does not seem to be widely used and I have not found an example for SQL Server. I know that ADO.NET supports retry for SqlConnection.Open(), but not for commands, so it's not a real solution. I'm a bit surprised that we seem to be the only ones having this problem?

3 Answers
Related