MigrationCommandListBuilder.Append 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
Append(Object) |
Appends the given object (as a string) to the command being built. |
Append(String) |
Appends the given string to the command being built. |
Append(Object)
Appends the given object (as a string) to the command being built.
public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder Append (object o);
abstract member Append : obj -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.Append : obj -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function Append (o As Object) As MigrationCommandListBuilder
Parameters
- o
- Object
The object to append.
Returns
This builder so that additional calls can be chained.
Applies to
Append(String)
Appends the given string to the command being built.
public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder Append (string o);
abstract member Append : string -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.Append : string -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function Append (o As String) As MigrationCommandListBuilder
Parameters
- o
- String
The string to append.
Returns
This builder so that additional calls can be chained.
Applies to
Entity Framework