OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>.HasData 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
HasData(IEnumerable<Object>) |
시드 데이터를 갖도록 이 엔터티를 구성합니다. 데이터 동작 마이그레이션을 생성하는 데 사용됩니다. |
HasData(IEnumerable<TDependentEntity>) |
이 엔터티 형식에 시드 데이터를 추가합니다. 데이터 동작 마이그레이션을 생성하는 데 사용됩니다. |
HasData(Object[]) |
시드 데이터를 갖도록 이 엔터티를 구성합니다. 데이터 동작 마이그레이션을 생성하는 데 사용됩니다. |
HasData(TDependentEntity[]) |
이 엔터티 형식에 시드 데이터를 추가합니다. 데이터 동작 마이그레이션을 생성하는 데 사용됩니다. |
HasData(IEnumerable<Object>)
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
시드 데이터를 갖도록 이 엔터티를 구성합니다. 데이터 동작 마이그레이션을 생성하는 데 사용됩니다.
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>
익명 형식으로 표현되는 시드 데이터의 컬렉션입니다.
반환
모델 데이터를 구성하는 데 사용할 수 있는 개체입니다.
적용 대상
HasData(IEnumerable<TDependentEntity>)
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
이 엔터티 형식에 시드 데이터를 추가합니다. 데이터 동작 마이그레이션을 생성하는 데 사용됩니다.
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>
시드 데이터의 컬렉션입니다.
반환
모델 데이터를 구성하는 데 사용할 수 있는 개체입니다.
적용 대상
HasData(Object[])
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
시드 데이터를 갖도록 이 엔터티를 구성합니다. 데이터 동작 마이그레이션을 생성하는 데 사용됩니다.
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[]
익명 형식으로 표시되는 시드 데이터의 배열입니다.
반환
모델 데이터를 구성하는 데 사용할 수 있는 개체입니다.
적용 대상
HasData(TDependentEntity[])
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
- Source:
- OwnedNavigationBuilder%60.cs
이 엔터티 형식에 시드 데이터를 추가합니다. 데이터 동작 마이그레이션을 생성하는 데 사용됩니다.
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[]
시드 데이터의 배열입니다.
반환
모델 데이터를 구성하는 데 사용할 수 있는 개체입니다.
적용 대상
Entity Framework