MigrationCommandListBuilder.AppendLine 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
AppendLine() |
在所建置的命令上啟動新行。 |
AppendLine(Object) |
將指定的物件附加 (為字串) 至所建置的命令,然後啟動新的行。 |
AppendLine(String) |
將指定的字串附加至所建置的命令,然後啟動新行。 |
AppendLine()
在所建置的命令上啟動新行。
public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine ();
abstract member AppendLine : unit -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : unit -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine () As MigrationCommandListBuilder
傳回
此產生器可鏈結其他呼叫。
適用於
AppendLine(Object)
將指定的物件附加 (為字串) 至所建置的命令,然後啟動新的行。
public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine (object o);
abstract member AppendLine : obj -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : obj -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine (o As Object) As MigrationCommandListBuilder
參數
- o
- Object
要附加的物件。
傳回
此產生器可鏈結其他呼叫。
適用於
AppendLine(String)
將指定的字串附加至所建置的命令,然後啟動新行。
public virtual Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder AppendLine (string value);
abstract member AppendLine : string -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
override this.AppendLine : string -> Microsoft.EntityFrameworkCore.Migrations.MigrationCommandListBuilder
Public Overridable Function AppendLine (value As String) As MigrationCommandListBuilder
參數
- value
- String
要附加的字串。
傳回
此產生器可鏈結其他呼叫。