DBDriverBaseExecuteWithActiveRecoveryStrategyT Method (FuncT) | 
 
            Executes the specified func with the active recovery strategy on this driver. If no recovery strategy is specified it will execute the func directly
            
 
    Namespace: 
   SD.LLBLGen.Pro.DBDriverCore
    Assembly:
   SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.8.0.0 (5.8.21.0208)
Syntaxpublic virtual T ExecuteWithActiveRecoveryStrategy<T>(
	Func<T> toExecute
)
Public Overridable Function ExecuteWithActiveRecoveryStrategy(Of T) ( 
	toExecute As Func(Of T)
) As T
Parameters
- toExecute
 - Type: SystemFuncT
To execute. 
Type Parameters
- T
 
Return Value
Type: 
Tthe result of the func executed
See Also