Could anyone guide me how to implement a retry policy with EF to SQL Azure, please.
Thanks.
|
|
|
I am using the Transiet Fault Handling Framework, provided in lue of a better solution by EF team.
|
|||
|
|
This Azure Forum thread has some links to good resources that cover this topic. There doesn't seem to be anything 'official' quite yet. But there are some open source projects that give you a pretty good start. From the answer: I personally didn't use the library the blog mentions. Instead I was able to get away with a simple WHILE LOOP with a TRY/CATCH that watched for the specific SQL EXCEPTION Error Numbers which were safe to retry. There is also a counter which basically prevents it from 'retrying' forever. |
||||
|
|
The Windows Server AppFabric Customer Advisory Team have provided some fairly detailed guidance around retries in this blog post. Basically, they've got a number of different ways of using the Transient Fault Handling Framework (which has been since superseded by the Transient Fault Handling Application Block, which is similar) in order to provide retries. |
|||
|
|