DbExecutionStrategy.ShouldRetryOn 方法
[此頁面專屬於 Entity Framework 第 6 版。最新版本可從 'Entity Framework' NuGet 套件取得。如需 Entity Framework 的詳細資訊,請參閱 msdn.com/data/ef。]
判斷指定的例外狀況是否代表可由重試補償的暫時性失敗。
命名空間: System.Data.Entity.Infrastructure
組件: EntityFramework (在 EntityFramework.dll 中)
語法
'宣告
Protected Friend MustOverride Function ShouldRetryOn ( _
exception As Exception _
) As Boolean
'用途
Dim exception As Exception
Dim returnValue As Boolean
returnValue = Me.ShouldRetryOn(exception)
protected internal abstract bool ShouldRetryOn(
Exception exception
)
protected public:
virtual bool ShouldRetryOn(
Exception^ exception
) abstract
abstract ShouldRetryOn :
exception:Exception -> bool
abstract function ShouldRetryOn(
exception : Exception
) : boolean
參數
- exception
類型:System.Exception
要驗證的例外狀況物件。
傳回值
類型:System.Boolean
若指定例外狀況被視為是暫時性,則為 true,否則為 false。