RelationalEntityTypeBuilderExtensions.ToTable 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
오버로드
ToTable(OwnedNavigationBuilder, String, String, Boolean)
주의
Use the overload with an Action parameter
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder referenceOwnershipBuilder, string name, string schema, bool excludedFromMigrations);
[System.Obsolete("Use the overload with an Action parameter")]
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder referenceOwnershipBuilder, string? name, string? schema, bool excludedFromMigrations);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
[<System.Obsolete("Use the overload with an Action parameter")>]
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (referenceOwnershipBuilder As OwnedNavigationBuilder, name As String, schema As String, excludedFromMigrations As Boolean) As OwnedNavigationBuilder
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- excludedFromMigrations
- Boolean
마이그레이션을 통해 테이블을 관리해야 하는지 여부를 나타내는 값입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
- 특성
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, String, String, Action<TableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder referenceOwnershipBuilder, string name, string? schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (referenceOwnershipBuilder As OwnedNavigationBuilder, name As String, schema As String, buildAction As Action(Of TableBuilder)) As OwnedNavigationBuilder
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- buildAction
- Action<TableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, String, String, Action<OwnedNavigationTableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ownedNavigationBuilder, string name, string? schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (ownedNavigationBuilder As OwnedNavigationBuilder, name As String, schema As String, buildAction As Action(Of OwnedNavigationTableBuilder)) As OwnedNavigationBuilder
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- buildAction
- Action<OwnedNavigationTableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(IConventionEntityTypeBuilder, String, String, Boolean)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, string name, string schema, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder? ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, string? name, string? schema, bool fromDataAnnotation = false);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * string * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder
<Extension()>
Public Function ToTable (entityTypeBuilder As IConventionEntityTypeBuilder, name As String, schema As String, Optional fromDataAnnotation As Boolean = false) As IConventionEntityTypeBuilder
매개 변수
- entityTypeBuilder
- IConventionEntityTypeBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- fromDataAnnotation
- Boolean
데이터 주석을 사용하여 구성을 지정했는지 여부를 나타냅니다.
반환
구성이 적용 null
된 경우 동일한 작성기가 instance. 그렇지 않으면 입니다.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(EntityTypeBuilder, String, String, Action<TableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, string name, string schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, string name, string? schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder * string * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
<Extension()>
Public Function ToTable (entityTypeBuilder As EntityTypeBuilder, name As String, schema As String, buildAction As Action(Of TableBuilder)) As EntityTypeBuilder
매개 변수
- entityTypeBuilder
- EntityTypeBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- buildAction
- Action<TableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, String, String)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ownedNavigationBuilder, string name, string? schema);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (ownedNavigationBuilder As OwnedNavigationBuilder, name As String, schema As String) As OwnedNavigationBuilder
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, String, Boolean)
주의
Use the overload with an Action parameter
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder referenceOwnershipBuilder, string name, bool excludedFromMigrations);
[System.Obsolete("Use the overload with an Action parameter")]
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder referenceOwnershipBuilder, string? name, bool excludedFromMigrations);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
[<System.Obsolete("Use the overload with an Action parameter")>]
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (referenceOwnershipBuilder As OwnedNavigationBuilder, name As String, excludedFromMigrations As Boolean) As OwnedNavigationBuilder
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- excludedFromMigrations
- Boolean
마이그레이션을 통해 테이블을 관리해야 하는지 여부를 나타내는 값입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
- 특성
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, String, Action<TableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder referenceOwnershipBuilder, string? name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (referenceOwnershipBuilder As OwnedNavigationBuilder, name As String, buildAction As Action(Of TableBuilder)) As OwnedNavigationBuilder
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- buildAction
- Action<TableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, String, Action<OwnedNavigationTableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ownedNavigationBuilder, string name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (ownedNavigationBuilder As OwnedNavigationBuilder, name As String, buildAction As Action(Of OwnedNavigationTableBuilder)) As OwnedNavigationBuilder
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- buildAction
- Action<OwnedNavigationTableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(IConventionEntityTypeBuilder, String, Boolean)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, string name, bool fromDataAnnotation = false);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder? ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder entityTypeBuilder, string? name, bool fromDataAnnotation = false);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionEntityTypeBuilder
<Extension()>
Public Function ToTable (entityTypeBuilder As IConventionEntityTypeBuilder, name As String, Optional fromDataAnnotation As Boolean = false) As IConventionEntityTypeBuilder
매개 변수
- entityTypeBuilder
- IConventionEntityTypeBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- fromDataAnnotation
- Boolean
데이터 주석을 사용하여 구성을 지정했는지 여부를 나타냅니다.
반환
구성이 적용 null
된 경우 동일한 작성기가 instance. 그렇지 않으면 입니다.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(EntityTypeBuilder, String, String)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, string name, string schema);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, string name, string? schema);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder * string * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
<Extension()>
Public Function ToTable (entityTypeBuilder As EntityTypeBuilder, name As String, schema As String) As EntityTypeBuilder
매개 변수
- entityTypeBuilder
- EntityTypeBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(EntityTypeBuilder, String, Action<TableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, string name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, string? name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
<Extension()>
Public Function ToTable (entityTypeBuilder As EntityTypeBuilder, name As String, buildAction As Action(Of TableBuilder)) As EntityTypeBuilder
매개 변수
- entityTypeBuilder
- EntityTypeBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- buildAction
- Action<TableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, String)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ownedNavigationBuilder, string? name);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (ownedNavigationBuilder As OwnedNavigationBuilder, name As String) As OwnedNavigationBuilder
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, Action<TableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder referenceOwnershipBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (referenceOwnershipBuilder As OwnedNavigationBuilder, buildAction As Action(Of TableBuilder)) As OwnedNavigationBuilder
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- buildAction
- Action<TableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(OwnedNavigationBuilder, Action<OwnedNavigationTableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder ownedNavigationBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder
<Extension()>
Public Function ToTable (ownedNavigationBuilder As OwnedNavigationBuilder, buildAction As Action(Of OwnedNavigationTableBuilder)) As OwnedNavigationBuilder
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- buildAction
- Action<OwnedNavigationTableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(EntityTypeBuilder, String)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, string name);
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, string? name);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
<Extension()>
Public Function ToTable (entityTypeBuilder As EntityTypeBuilder, name As String) As EntityTypeBuilder
매개 변수
- entityTypeBuilder
- EntityTypeBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable(EntityTypeBuilder, Action<TableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder entityTypeBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder
<Extension()>
Public Function ToTable (entityTypeBuilder As EntityTypeBuilder, buildAction As Action(Of TableBuilder)) As EntityTypeBuilder
매개 변수
- entityTypeBuilder
- EntityTypeBuilder
구성 중인 엔터티 형식에 대한 작성기입니다.
- buildAction
- Action<TableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TEntity>(EntityTypeBuilder<TEntity>, String, String, Action<TableBuilder>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string name, string schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction) where TEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> * string * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class) (entityTypeBuilder As EntityTypeBuilder(Of TEntity), name As String, schema As String, buildAction As Action(Of TableBuilder)) As EntityTypeBuilder(Of TEntity)
형식 매개 변수
- TEntity
구성되는 엔터티 형식입니다.
매개 변수
- entityTypeBuilder
- EntityTypeBuilder<TEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- buildAction
- Action<TableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
적용 대상
ToTable<TEntity>(EntityTypeBuilder<TEntity>, String, String, Action<TableBuilder<TEntity>>)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string name, string schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TEntity>> buildAction) where TEntity : class;
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string name, string? schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TEntity>> buildAction) where TEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> * string * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'Entity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class) (entityTypeBuilder As EntityTypeBuilder(Of TEntity), name As String, schema As String, buildAction As Action(Of TableBuilder(Of TEntity))) As EntityTypeBuilder(Of TEntity)
형식 매개 변수
- TEntity
구성되는 엔터티 형식입니다.
매개 변수
- entityTypeBuilder
- EntityTypeBuilder<TEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- buildAction
- Action<TableBuilder<TEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TEntity>(EntityTypeBuilder<TEntity>, String, String)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string name, string schema) where TEntity : class;
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string name, string? schema) where TEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> * string * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class) (entityTypeBuilder As EntityTypeBuilder(Of TEntity), name As String, schema As String) As EntityTypeBuilder(Of TEntity)
형식 매개 변수
- TEntity
구성되는 엔터티 형식입니다.
매개 변수
- entityTypeBuilder
- EntityTypeBuilder<TEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TEntity>(EntityTypeBuilder<TEntity>, String)
관계형 데이터베이스를 대상으로 지정할 때 엔터티 형식이 매핑하는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string name) where TEntity : class;
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string? name) where TEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class) (entityTypeBuilder As EntityTypeBuilder(Of TEntity), name As String) As EntityTypeBuilder(Of TEntity)
형식 매개 변수
- TEntity
구성되는 엔터티 형식입니다.
매개 변수
- entityTypeBuilder
- EntityTypeBuilder<TEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
반환
동일한 작성기가 여러 호출을 연결할 수 있도록 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TEntity>(EntityTypeBuilder<TEntity>, String, Action<TableBuilder<TEntity>>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TEntity>> buildAction) where TEntity : class;
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string? name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TEntity>> buildAction) where TEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'Entity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class) (entityTypeBuilder As EntityTypeBuilder(Of TEntity), name As String, buildAction As Action(Of TableBuilder(Of TEntity))) As EntityTypeBuilder(Of TEntity)
형식 매개 변수
- TEntity
구성되는 엔터티 형식입니다.
매개 변수
- entityTypeBuilder
- EntityTypeBuilder<TEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- buildAction
- Action<TableBuilder<TEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TEntity>(EntityTypeBuilder<TEntity>, Action<TableBuilder<TEntity>>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TEntity>> buildAction) where TEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'Entity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class) (entityTypeBuilder As EntityTypeBuilder(Of TEntity), buildAction As Action(Of TableBuilder(Of TEntity))) As EntityTypeBuilder(Of TEntity)
형식 매개 변수
- TEntity
구성되는 엔터티 형식입니다.
매개 변수
- entityTypeBuilder
- EntityTypeBuilder<TEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- buildAction
- Action<TableBuilder<TEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TEntity>(EntityTypeBuilder<TEntity>, String, Action<TableBuilder>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> ToTable<TEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<TEntity> entityTypeBuilder, string name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> buildAction) where TEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder> -> Microsoft.EntityFrameworkCore.Metadata.Builders.EntityTypeBuilder<'Entity (requires 'Entity : null)> (requires 'Entity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class) (entityTypeBuilder As EntityTypeBuilder(Of TEntity), name As String, buildAction As Action(Of TableBuilder)) As EntityTypeBuilder(Of TEntity)
형식 매개 변수
- TEntity
구성되는 엔터티 형식입니다.
매개 변수
- entityTypeBuilder
- EntityTypeBuilder<TEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- buildAction
- Action<TableBuilder>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
적용 대상
ToTable<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>, String, String)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ToTable<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ownedNavigationBuilder, string name, string? schema) where TOwnerEntity : class where TDependentEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> * string * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TDependentEntity As Class) (ownedNavigationBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity), name As String, schema As String) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)
형식 매개 변수
- TOwnerEntity
관계를 소유하는 엔터티 형식입니다.
- TDependentEntity
관계의 종속 엔터티 형식입니다.
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity, TDependentEntity>, Action<OwnedNavigationTableBuilder<TOwnerEntity, TDependentEntity>>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ToTable<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ownedNavigationBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>> buildAction) where TOwnerEntity : class where TDependentEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<'OwnerEntity, 'DependentEntity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TDependentEntity As Class) (ownedNavigationBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity), buildAction As Action(Of OwnedNavigationTableBuilder(Of TOwnerEntity, TDependentEntity))) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)
형식 매개 변수
- TOwnerEntity
관계를 소유하는 엔터티 형식입니다.
- TDependentEntity
관계의 종속 엔터티 형식입니다.
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- buildAction
- Action<OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>, String)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ToTable<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ownedNavigationBuilder, string? name) where TOwnerEntity : class where TDependentEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TDependentEntity As Class) (ownedNavigationBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity), name As String) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)
형식 매개 변수
- TOwnerEntity
관계를 소유하는 엔터티 형식입니다.
- TDependentEntity
관계의 종속 엔터티 형식입니다.
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity, TDependentEntity>, String, Action<OwnedNavigationTableBuilder<TOwnerEntity, TDependentEntity>>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ToTable<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ownedNavigationBuilder, string name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>> buildAction) where TOwnerEntity : class where TDependentEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<'OwnerEntity, 'DependentEntity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TDependentEntity As Class) (ownedNavigationBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity), name As String, buildAction As Action(Of OwnedNavigationTableBuilder(Of TOwnerEntity, TDependentEntity))) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)
형식 매개 변수
- TOwnerEntity
관계를 소유하는 엔터티 형식입니다.
- TDependentEntity
관계의 종속 엔터티 형식입니다.
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- buildAction
- Action<OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TDependentEntity>(OwnedNavigationBuilder<TOwnerEntity, TDependentEntity>, String, String, Action<OwnedNavigationTableBuilder<TOwnerEntity, TDependentEntity>>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ToTable<TOwnerEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TDependentEntity> ownedNavigationBuilder, string name, string? schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>> buildAction) where TOwnerEntity : class where TDependentEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> * string * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationTableBuilder<'OwnerEntity, 'DependentEntity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'DependentEntity (requires 'OwnerEntity : null and 'DependentEntity : null)> (requires 'OwnerEntity : null and 'DependentEntity : null)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TDependentEntity As Class) (ownedNavigationBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity), name As String, schema As String, buildAction As Action(Of OwnedNavigationTableBuilder(Of TOwnerEntity, TDependentEntity))) As OwnedNavigationBuilder(Of TOwnerEntity, TDependentEntity)
형식 매개 변수
- TOwnerEntity
관계를 소유하는 엔터티 형식입니다.
- TDependentEntity
관계의 종속 엔터티 형식입니다.
매개 변수
- ownedNavigationBuilder
- OwnedNavigationBuilder<TOwnerEntity,TDependentEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- buildAction
- Action<OwnedNavigationTableBuilder<TOwnerEntity,TDependentEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용 과 예제는 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TRelatedEntity>(OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>, String, Action<TableBuilder<TRelatedEntity>>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> ToTable<TOwnerEntity,TRelatedEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> referenceOwnershipBuilder, string? name, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TRelatedEntity>> buildAction) where TOwnerEntity : class where TRelatedEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'RelatedEntity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> (requires 'OwnerEntity : null and 'RelatedEntity : null)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TRelatedEntity As Class) (referenceOwnershipBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity), name As String, buildAction As Action(Of TableBuilder(Of TRelatedEntity))) As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity)
형식 매개 변수
- TOwnerEntity
- TRelatedEntity
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- buildAction
- Action<TableBuilder<TRelatedEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TRelatedEntity>(OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>, String, String, Boolean)
주의
Use the overload with an Action parameter
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TEntity,TRelatedEntity> ToTable<TEntity,TRelatedEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TEntity,TRelatedEntity> referenceOwnershipBuilder, string name, string schema, bool excludedFromMigrations) where TEntity : class where TRelatedEntity : class;
[System.Obsolete("Use the overload with an Action parameter")]
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> ToTable<TOwnerEntity,TRelatedEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> referenceOwnershipBuilder, string? name, string? schema, bool excludedFromMigrations) where TOwnerEntity : class where TRelatedEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'Entity, 'RelatedEntity (requires 'Entity : null and 'RelatedEntity : null)> * string * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'Entity, 'RelatedEntity (requires 'Entity : null and 'RelatedEntity : null)> (requires 'Entity : null and 'RelatedEntity : null)
[<System.Obsolete("Use the overload with an Action parameter")>]
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> * string * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> (requires 'OwnerEntity : null and 'RelatedEntity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class, TRelatedEntity As Class) (referenceOwnershipBuilder As OwnedNavigationBuilder(Of TEntity, TRelatedEntity), name As String, schema As String, excludedFromMigrations As Boolean) As OwnedNavigationBuilder(Of TEntity, TRelatedEntity)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TRelatedEntity As Class) (referenceOwnershipBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity), name As String, schema As String, excludedFromMigrations As Boolean) As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity)
형식 매개 변수
- TEntity TOwnerEntity
- TRelatedEntity
이 관계가 대상으로 하는 엔터티 형식입니다.
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- excludedFromMigrations
- Boolean
마이그레이션을 통해 테이블을 관리해야 하는지 여부를 나타내는 값입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
- 특성
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TRelatedEntity>(OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>, String, Boolean)
주의
Use the overload with an Action parameter
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TEntity,TRelatedEntity> ToTable<TEntity,TRelatedEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TEntity,TRelatedEntity> referenceOwnershipBuilder, string name, bool excludedFromMigrations) where TEntity : class where TRelatedEntity : class;
[System.Obsolete("Use the overload with an Action parameter")]
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> ToTable<TOwnerEntity,TRelatedEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> referenceOwnershipBuilder, string? name, bool excludedFromMigrations) where TOwnerEntity : class where TRelatedEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'Entity, 'RelatedEntity (requires 'Entity : null and 'RelatedEntity : null)> * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'Entity, 'RelatedEntity (requires 'Entity : null and 'RelatedEntity : null)> (requires 'Entity : null and 'RelatedEntity : null)
[<System.Obsolete("Use the overload with an Action parameter")>]
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> * string * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> (requires 'OwnerEntity : null and 'RelatedEntity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class, TRelatedEntity As Class) (referenceOwnershipBuilder As OwnedNavigationBuilder(Of TEntity, TRelatedEntity), name As String, excludedFromMigrations As Boolean) As OwnedNavigationBuilder(Of TEntity, TRelatedEntity)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TRelatedEntity As Class) (referenceOwnershipBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity), name As String, excludedFromMigrations As Boolean) As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity)
형식 매개 변수
- TEntity TOwnerEntity
- TRelatedEntity
이 관계가 대상으로 하는 엔터티 형식입니다.
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- excludedFromMigrations
- Boolean
마이그레이션을 통해 테이블을 관리해야 하는지 여부를 나타내는 값입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
- 특성
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TRelatedEntity>(OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>, Action<TableBuilder<TRelatedEntity>>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> ToTable<TOwnerEntity,TRelatedEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> referenceOwnershipBuilder, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TRelatedEntity>> buildAction) where TOwnerEntity : class where TRelatedEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'RelatedEntity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> (requires 'OwnerEntity : null and 'RelatedEntity : null)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TRelatedEntity As Class) (referenceOwnershipBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity), buildAction As Action(Of TableBuilder(Of TRelatedEntity))) As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity)
형식 매개 변수
- TOwnerEntity
- TRelatedEntity
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- buildAction
- Action<TableBuilder<TRelatedEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
ToTable<TOwnerEntity,TRelatedEntity>(OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>, String, String, Action<TableBuilder<TRelatedEntity>>)
관계형 데이터베이스를 대상으로 할 때 엔터티 형식이 매핑되는 테이블을 구성합니다.
public static Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> ToTable<TOwnerEntity,TRelatedEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity> referenceOwnershipBuilder, string name, string? schema, Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<TRelatedEntity>> buildAction) where TOwnerEntity : class where TRelatedEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> * string * string * Action<Microsoft.EntityFrameworkCore.Metadata.Builders.TableBuilder<'RelatedEntity>> -> Microsoft.EntityFrameworkCore.Metadata.Builders.OwnedNavigationBuilder<'OwnerEntity, 'RelatedEntity (requires 'OwnerEntity : null and 'RelatedEntity : null)> (requires 'OwnerEntity : null and 'RelatedEntity : null)
<Extension()>
Public Function ToTable(Of TOwnerEntity As Class, TRelatedEntity As Class) (referenceOwnershipBuilder As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity), name As String, schema As String, buildAction As Action(Of TableBuilder(Of TRelatedEntity))) As OwnedNavigationBuilder(Of TOwnerEntity, TRelatedEntity)
형식 매개 변수
- TOwnerEntity
- TRelatedEntity
매개 변수
- referenceOwnershipBuilder
- OwnedNavigationBuilder<TOwnerEntity,TRelatedEntity>
구성 중인 엔터티 형식에 대한 작성기입니다.
- name
- String
테이블의 이름입니다.
- schema
- String
테이블의 스키마입니다.
- buildAction
- Action<TableBuilder<TRelatedEntity>>
테이블의 구성을 수행하는 작업입니다.
반환
여러 호출을 연결할 수 있도록 동일한 작성기가 instance.
설명
자세한 내용은 엔터티 형식 및 관계 모델링 을 참조하세요.
적용 대상
Entity Framework