RelationalModelDependencies Constructors
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
RelationalModelDependencies() |
Creates the relational model service dependencies. Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process. This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
RelationalModelDependencies(IRowKeyValueFactoryFactory, IRowForeignKeyValueFactoryFactory, IRowIndexValueFactoryFactory) |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
RelationalModelDependencies(IRowKeyValueFactoryFactory, IRowForeignKeyValueFactoryFactory, IRowIndexValueFactoryFactory, IValueConverterSelector) |
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release. |
RelationalModelDependencies()
Creates the relational model service dependencies.
Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the 'With...' methods. Do not call the constructor at any point in this process.
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
public RelationalModelDependencies ();
Public Sub New ()
- Attributes
Applies to
RelationalModelDependencies(IRowKeyValueFactoryFactory, IRowForeignKeyValueFactoryFactory, IRowIndexValueFactoryFactory)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
public RelationalModelDependencies (Microsoft.EntityFrameworkCore.Update.Internal.IRowKeyValueFactoryFactory rowKeyValueFactoryFactory, Microsoft.EntityFrameworkCore.Update.Internal.IRowForeignKeyValueFactoryFactory foreignKeyRowValueFactorySource, Microsoft.EntityFrameworkCore.Update.Internal.IRowIndexValueFactoryFactory rowIndexValueFactoryFactory);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
new Microsoft.EntityFrameworkCore.Infrastructure.RelationalModelDependencies : Microsoft.EntityFrameworkCore.Update.Internal.IRowKeyValueFactoryFactory * Microsoft.EntityFrameworkCore.Update.Internal.IRowForeignKeyValueFactoryFactory * Microsoft.EntityFrameworkCore.Update.Internal.IRowIndexValueFactoryFactory -> Microsoft.EntityFrameworkCore.Infrastructure.RelationalModelDependencies
Public Sub New (rowKeyValueFactoryFactory As IRowKeyValueFactoryFactory, foreignKeyRowValueFactorySource As IRowForeignKeyValueFactoryFactory, rowIndexValueFactoryFactory As IRowIndexValueFactoryFactory)
Parameters
- rowKeyValueFactoryFactory
- Microsoft.EntityFrameworkCore.Update.Internal.IRowKeyValueFactoryFactory
- foreignKeyRowValueFactorySource
- Microsoft.EntityFrameworkCore.Update.Internal.IRowForeignKeyValueFactoryFactory
- rowIndexValueFactoryFactory
- Microsoft.EntityFrameworkCore.Update.Internal.IRowIndexValueFactoryFactory
- Attributes
Remarks
Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the C# 'with' operator. Do not call the constructor at any point in this process.
Applies to
RelationalModelDependencies(IRowKeyValueFactoryFactory, IRowForeignKeyValueFactoryFactory, IRowIndexValueFactoryFactory, IValueConverterSelector)
This is an internal API that supports the Entity Framework Core infrastructure and not subject to the same compatibility standards as public APIs. It may be changed or removed without notice in any release. You should only use it directly in your code with extreme caution and knowing that doing so can result in application failures when updating to a new Entity Framework Core release.
[Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal]
public RelationalModelDependencies (Microsoft.EntityFrameworkCore.Update.Internal.IRowKeyValueFactoryFactory rowKeyValueFactoryFactory, Microsoft.EntityFrameworkCore.Update.Internal.IRowForeignKeyValueFactoryFactory foreignKeyRowValueFactorySource, Microsoft.EntityFrameworkCore.Update.Internal.IRowIndexValueFactoryFactory rowIndexValueFactoryFactory, Microsoft.EntityFrameworkCore.Storage.ValueConversion.IValueConverterSelector valueConverterSelector);
[<Microsoft.EntityFrameworkCore.Infrastructure.EntityFrameworkInternal>]
new Microsoft.EntityFrameworkCore.Infrastructure.RelationalModelDependencies : Microsoft.EntityFrameworkCore.Update.Internal.IRowKeyValueFactoryFactory * Microsoft.EntityFrameworkCore.Update.Internal.IRowForeignKeyValueFactoryFactory * Microsoft.EntityFrameworkCore.Update.Internal.IRowIndexValueFactoryFactory * Microsoft.EntityFrameworkCore.Storage.ValueConversion.IValueConverterSelector -> Microsoft.EntityFrameworkCore.Infrastructure.RelationalModelDependencies
Public Sub New (rowKeyValueFactoryFactory As IRowKeyValueFactoryFactory, foreignKeyRowValueFactorySource As IRowForeignKeyValueFactoryFactory, rowIndexValueFactoryFactory As IRowIndexValueFactoryFactory, valueConverterSelector As IValueConverterSelector)
Parameters
- rowKeyValueFactoryFactory
- Microsoft.EntityFrameworkCore.Update.Internal.IRowKeyValueFactoryFactory
- foreignKeyRowValueFactorySource
- Microsoft.EntityFrameworkCore.Update.Internal.IRowForeignKeyValueFactoryFactory
- rowIndexValueFactoryFactory
- Microsoft.EntityFrameworkCore.Update.Internal.IRowIndexValueFactoryFactory
- valueConverterSelector
- IValueConverterSelector
- Attributes
Remarks
Do not call this constructor directly from either provider or application code as it may change as new dependencies are added. Instead, use this type in your constructor so that an instance will be created and injected automatically by the dependency injection container. To create an instance with some dependent services replaced, first resolve the object from the dependency injection container, then replace selected services using the C# 'with' operator. Do not call the constructor at any point in this process.
Applies to
Entity Framework