4

我有几个依赖于使用 EF 4 的存储库的应用程序。有时,SQL 操作会因为(即超时、连接失败等)而失败。

我想使用瞬态故障处理应用程序块,但我没有使用 Azure。Azure 场景的信息似乎有很多,但没有关于使用“准系统”方法的信息。我担心如果我使用 Azure 检测策略,它就不起作用。

有人知道我在哪里可以找到有关如何最好地使用它的信息吗?

4

1 回答 1

2

我可以通过查看这里开始:http: //hmadrigal.wordpress.com/2012/04/23/automatic-retries-using-the-transient-fault-handling-from-enterprise-libraries-entlib/

您只需要编写自己的检测策略类。就我而言,它看起来像这样:

public class EntityFrameworkTransientErrorDetectionStrategy : ITransientErrorDetectionStrategy
{
    #region ITransientErrorDetectionStrategy Members

    public bool IsTransient(Exception ex)
    {
        if (ex is SqlException)
        {
            return true;
        }
        else
            return false;
    }

    #endregion
}

在我的存储库构造函数中,我有这个:

_retryStrategy = new FixedInterval(_retryLimit, new TimeSpan(0, 0, 0, 0, 500));
        _retryPolicy = new RetryPolicy<EntityFrameworkTransientErrorDetectionStrategy>(_retryStrategy);     // use our custom detection strategy

        _retryPolicy.Retrying += (sender, args) =>
            {
                // Log any retries as warnings
                _logger.WarnFormat("Retry {0} of {1} due to exception: {2}", args.CurrentRetryCount, _retryLimit, args.LastException);
            };

典型的存储库方法:

public override HarvesterDomain.Source SelectSource(Guid id)
    {
        HarvesterDomain.Source source = null;
        _retryPolicy.ExecuteAction(() =>
            {
                var contextSource = _context.Sources.Where(s => s.Id == id).FirstOrDefault();

                if (contextSource != null)
                    source = contextSource.ToHarvesterDomainSource();
            });
        return source;
    }
于 2013-05-09T21:31:45.127 回答