Share via


NonRetryingExecutionStrategy Constructors

Definition

Overloads

NonRetryingExecutionStrategy(DbContext)

Constructs a new NonRetryingExecutionStrategy with the given context.

NonRetryingExecutionStrategy(ExecutionStrategyDependencies)

Constructs a new NonRetryingExecutionStrategy with the given service dependencies.

NonRetryingExecutionStrategy(DbContext)

Constructs a new NonRetryingExecutionStrategy with the given context.

public NonRetryingExecutionStrategy (Microsoft.EntityFrameworkCore.DbContext context);
new Microsoft.EntityFrameworkCore.Storage.NonRetryingExecutionStrategy : Microsoft.EntityFrameworkCore.DbContext -> Microsoft.EntityFrameworkCore.Storage.NonRetryingExecutionStrategy
Public Sub New (context As DbContext)

Parameters

context
DbContext

The context on which the operations will be invoked.

Applies to

NonRetryingExecutionStrategy(ExecutionStrategyDependencies)

Constructs a new NonRetryingExecutionStrategy with the given service dependencies.

public NonRetryingExecutionStrategy (Microsoft.EntityFrameworkCore.Storage.ExecutionStrategyDependencies dependencies);
new Microsoft.EntityFrameworkCore.Storage.NonRetryingExecutionStrategy : Microsoft.EntityFrameworkCore.Storage.ExecutionStrategyDependencies -> Microsoft.EntityFrameworkCore.Storage.NonRetryingExecutionStrategy
Public Sub New (dependencies As ExecutionStrategyDependencies)

Parameters

dependencies
ExecutionStrategyDependencies

Dependencies for this execution strategy.

Applies to