OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>.HasData 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
HasData(IEnumerable<Object>) |
將此實體設定為具有種子資料。 它用來產生資料動作移轉。 |
HasData(IEnumerable<TDependentEntity>) |
將種子資料新增至此實體類型。 它用來產生資料動作移轉。 |
HasData(Object[]) |
將此實體設定為具有種子資料。 它用來產生資料動作移轉。 |
HasData(TDependentEntity[]) |
將種子資料新增至此實體類型。 它用來產生資料動作移轉。 |
HasData(IEnumerable<Object>)
將此實體設定為具有種子資料。 它用來產生資料動作移轉。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.DataBuilder<TDependentEntity> HasData (System.Collections.Generic.IEnumerable<object> data);
override this.HasData : seq<obj> -> Microsoft.EntityFrameworkCore.Metadata.Builders.DataBuilder<'DependentEntity (requires 'DependentEntity : null)>
Public Overridable Function HasData (data As IEnumerable(Of Object)) As DataBuilder(Of TDependentEntity)
參數
- data
- IEnumerable<Object>
由匿名型別表示的種子資料集合。
傳回
DataBuilder<TDependentEntity>
可用來設定模型資料的物件。
適用於
HasData(IEnumerable<TDependentEntity>)
將種子資料新增至此實體類型。 它用來產生資料動作移轉。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.DataBuilder<TDependentEntity> HasData (System.Collections.Generic.IEnumerable<TDependentEntity> data);
override this.HasData : seq<'DependentEntity (requires 'DependentEntity : null)> -> Microsoft.EntityFrameworkCore.Metadata.Builders.DataBuilder<'DependentEntity (requires 'DependentEntity : null)>
Public Overridable Function HasData (data As IEnumerable(Of TDependentEntity)) As DataBuilder(Of TDependentEntity)
參數
- data
- IEnumerable<TDependentEntity>
種子資料的集合。
傳回
DataBuilder<TDependentEntity>
可用來設定模型資料的物件。
適用於
HasData(Object[])
將此實體設定為具有種子資料。 它用來產生資料動作移轉。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.DataBuilder<TDependentEntity> HasData (params object[] data);
override this.HasData : obj[] -> Microsoft.EntityFrameworkCore.Metadata.Builders.DataBuilder<'DependentEntity (requires 'DependentEntity : null)>
Public Overridable Function HasData (ParamArray data As Object()) As DataBuilder(Of TDependentEntity)
參數
- data
- Object[]
由匿名型別表示的種子資料陣列。
傳回
DataBuilder<TDependentEntity>
可用來設定模型資料的物件。
適用於
HasData(TDependentEntity[])
將種子資料新增至此實體類型。 它用來產生資料動作移轉。
public virtual Microsoft.EntityFrameworkCore.Metadata.Builders.DataBuilder<TDependentEntity> HasData (params TDependentEntity[] data);
override this.HasData : 'DependentEntity[] -> Microsoft.EntityFrameworkCore.Metadata.Builders.DataBuilder<'DependentEntity (requires 'DependentEntity : null)>
Public Overridable Function HasData (ParamArray data As TDependentEntity()) As DataBuilder(Of TDependentEntity)
參數
- data
- TDependentEntity[]
種子資料的陣列。
傳回
DataBuilder<TDependentEntity>
可用來設定模型資料的物件。