RelationalOptionsExtension.WithMigrationsAssembly 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
WithMigrationsAssembly(Assembly) |
Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use DbContextOptionsBuilder. |
WithMigrationsAssembly(String) |
Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use DbContextOptionsBuilder. |
WithMigrationsAssembly(Assembly)
Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use DbContextOptionsBuilder.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension WithMigrationsAssembly (System.Reflection.Assembly migrationsAssembly);
abstract member WithMigrationsAssembly : System.Reflection.Assembly -> Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension
override this.WithMigrationsAssembly : System.Reflection.Assembly -> Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension
Public Overridable Function WithMigrationsAssembly (migrationsAssembly As Assembly) As RelationalOptionsExtension
Parameters
- migrationsAssembly
- Assembly
The option to change.
Returns
A new instance with the option changed.
Applies to
WithMigrationsAssembly(String)
Creates a new instance with all options the same as for this instance, but with the given option changed. It is unusual to call this method directly. Instead use DbContextOptionsBuilder.
public virtual Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension WithMigrationsAssembly (string migrationsAssembly);
public virtual Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension WithMigrationsAssembly (string? migrationsAssembly);
abstract member WithMigrationsAssembly : string -> Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension
override this.WithMigrationsAssembly : string -> Microsoft.EntityFrameworkCore.Infrastructure.RelationalOptionsExtension
Public Overridable Function WithMigrationsAssembly (migrationsAssembly As String) As RelationalOptionsExtension
Parameters
- migrationsAssembly
- String
The option to change.
Returns
A new instance with the option changed.
Applies to
Entity Framework