SqlServerModelBuilderExtensions.UseKeySequences 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定模型以每個階層的順序,以在目標設為 SQL Server時,產生標示為 OnAdd 之索引鍵屬性的值。
public static Microsoft.EntityFrameworkCore.ModelBuilder UseKeySequences (this Microsoft.EntityFrameworkCore.ModelBuilder modelBuilder, string? nameSuffix = default, string? schema = default);
static member UseKeySequences : Microsoft.EntityFrameworkCore.ModelBuilder * string * string -> Microsoft.EntityFrameworkCore.ModelBuilder
<Extension()>
Public Function UseKeySequences (modelBuilder As ModelBuilder, Optional nameSuffix As String = Nothing, Optional schema As String = Nothing) As ModelBuilder
參數
- modelBuilder
- ModelBuilder
模型產生器。
- nameSuffix
- String
將針對每個自動建立的序列,將後置資料表名稱的名稱。
- schema
- String
序列的架構。
傳回
相同的產生器實例,以便鏈結多個呼叫。
備註
如需詳細資訊和範例,請參閱使用 EF Core建立實體類型和關聯性的模型化,以及存取SQL Server和Azure SQL資料庫。