DatabaseDependencies.With Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
With(IQueryCompilationContextFactory) |
Clones this dependency parameter object with one service replaced. |
With(IUpdateAdapterFactory) |
Clones this dependency parameter object with one service replaced. |
With(IQueryCompilationContextFactory)
Clones this dependency parameter object with one service replaced.
public Microsoft.EntityFrameworkCore.Storage.DatabaseDependencies With (Microsoft.EntityFrameworkCore.Query.IQueryCompilationContextFactory queryCompilationContextFactory);
member this.With : Microsoft.EntityFrameworkCore.Query.IQueryCompilationContextFactory -> Microsoft.EntityFrameworkCore.Storage.DatabaseDependencies
Public Function With (queryCompilationContextFactory As IQueryCompilationContextFactory) As DatabaseDependencies
Parameters
- queryCompilationContextFactory
- IQueryCompilationContextFactory
A replacement for the current dependency of this type.
Returns
A new parameter object with the given service replaced.
Applies to
With(IUpdateAdapterFactory)
Clones this dependency parameter object with one service replaced.
public Microsoft.EntityFrameworkCore.Storage.DatabaseDependencies With (Microsoft.EntityFrameworkCore.Update.IUpdateAdapterFactory updateAdapterFactory);
member this.With : Microsoft.EntityFrameworkCore.Update.IUpdateAdapterFactory -> Microsoft.EntityFrameworkCore.Storage.DatabaseDependencies
Public Function With (updateAdapterFactory As IUpdateAdapterFactory) As DatabaseDependencies
Parameters
- updateAdapterFactory
- IUpdateAdapterFactory
A replacement for the current dependency of this type.
Returns
A new parameter object with the given service replaced.
Applies to
Entity Framework