RelationalDbContextOptionsBuilder<TBuilder,TExtension>.MigrationsAssembly 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
MigrationsAssembly(Assembly) |
Configures the assembly where migrations are maintained for this context. |
MigrationsAssembly(String) |
Configures the assembly where migrations are maintained for this context. |
MigrationsAssembly(Assembly)
Configures the assembly where migrations are maintained for this context.
public virtual TBuilder MigrationsAssembly (System.Reflection.Assembly assembly);
abstract member MigrationsAssembly : System.Reflection.Assembly -> 'Builder
override this.MigrationsAssembly : System.Reflection.Assembly -> 'Builder
Public Overridable Function MigrationsAssembly (assembly As Assembly) As TBuilder
Parameters
Returns
The same builder instance so that multiple calls can be chained.
Remarks
See Database migrations for more information and examples.
Applies to
MigrationsAssembly(String)
Configures the assembly where migrations are maintained for this context.
public virtual TBuilder MigrationsAssembly (string assemblyName);
public virtual TBuilder MigrationsAssembly (string? assemblyName);
abstract member MigrationsAssembly : string -> 'Builder
override this.MigrationsAssembly : string -> 'Builder
Public Overridable Function MigrationsAssembly (assemblyName As String) As TBuilder
Parameters
- assemblyName
- String
The name of the assembly.
Returns
The same builder instance so that multiple calls can be chained.
Remarks
See Database migrations for more information and examples.
Applies to
Entity Framework