다음을 통해 공유


RelationalCollectionOwnershipBuilderExtensions.ToTable 메서드

정의

오버로드

ToTable(CollectionOwnershipBuilder, String)

관계형 데이터베이스를 대상으로 할 때 엔터티가 매핑하는 뷰 또는 테이블을 구성합니다.

ToTable(CollectionOwnershipBuilder, String, String)

관계형 데이터베이스를 대상으로 할 때 엔터티가 매핑하는 뷰 또는 테이블을 구성합니다.

ToTable<TEntity,TDependentEntity>(CollectionOwnershipBuilder<TEntity,TDependentEntity>, String)

관계형 데이터베이스를 대상으로 할 때 엔터티가 매핑하는 뷰 또는 테이블을 구성합니다.

ToTable<TEntity,TDependentEntity>(CollectionOwnershipBuilder<TEntity,TDependentEntity>, String, String)

관계형 데이터베이스를 대상으로 할 때 엔터티가 매핑하는 뷰 또는 테이블을 구성합니다.

ToTable(CollectionOwnershipBuilder, String)

Source:
RelationalCollectionOwnershipBuilderExtensions.cs

관계형 데이터베이스를 대상으로 할 때 엔터티가 매핑하는 뷰 또는 테이블을 구성합니다.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder collectionOwnershipBuilder, string name);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder
<Extension()>
Public Function ToTable (collectionOwnershipBuilder As CollectionOwnershipBuilder, name As String) As CollectionOwnershipBuilder

매개 변수

collectionOwnershipBuilder
CollectionOwnershipBuilder

구성 중인 엔터티 형식에 대한 작성기입니다.

name
String

뷰 또는 테이블의 이름입니다.

반환

여러 호출을 연결할 수 있도록 동일한 작성기가 instance.

적용 대상

ToTable(CollectionOwnershipBuilder, String, String)

Source:
RelationalCollectionOwnershipBuilderExtensions.cs

관계형 데이터베이스를 대상으로 할 때 엔터티가 매핑하는 뷰 또는 테이블을 구성합니다.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder ToTable (this Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder collectionOwnershipBuilder, string name, string schema);
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder * string * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder
<Extension()>
Public Function ToTable (collectionOwnershipBuilder As CollectionOwnershipBuilder, name As String, schema As String) As CollectionOwnershipBuilder

매개 변수

collectionOwnershipBuilder
CollectionOwnershipBuilder

구성 중인 엔터티 형식에 대한 작성기입니다.

name
String

뷰 또는 테이블의 이름입니다.

schema
String

뷰 또는 테이블의 스키마입니다.

반환

여러 호출을 연결할 수 있도록 동일한 작성기가 instance.

적용 대상

ToTable<TEntity,TDependentEntity>(CollectionOwnershipBuilder<TEntity,TDependentEntity>, String)

Source:
RelationalCollectionOwnershipBuilderExtensions.cs

관계형 데이터베이스를 대상으로 할 때 엔터티가 매핑하는 뷰 또는 테이블을 구성합니다.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<TEntity,TDependentEntity> ToTable<TEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<TEntity,TDependentEntity> collectionOwnershipBuilder, string name) where TEntity : class where TDependentEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)> * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)> (requires 'Entity : null and 'DependentEntity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class, TDependentEntity As Class) (collectionOwnershipBuilder As CollectionOwnershipBuilder(Of TEntity, TDependentEntity), name As String) As CollectionOwnershipBuilder(Of TEntity, TDependentEntity)

형식 매개 변수

TEntity

구성되는 엔터티 형식입니다.

TDependentEntity

이 관계가 대상으로 하는 엔터티 형식입니다.

매개 변수

collectionOwnershipBuilder
CollectionOwnershipBuilder<TEntity,TDependentEntity>

구성 중인 엔터티 형식에 대한 작성기입니다.

name
String

뷰 또는 테이블의 이름입니다.

반환

여러 호출을 연결할 수 있도록 동일한 작성기가 instance.

적용 대상

ToTable<TEntity,TDependentEntity>(CollectionOwnershipBuilder<TEntity,TDependentEntity>, String, String)

Source:
RelationalCollectionOwnershipBuilderExtensions.cs

관계형 데이터베이스를 대상으로 할 때 엔터티가 매핑하는 뷰 또는 테이블을 구성합니다.

public static Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<TEntity,TDependentEntity> ToTable<TEntity,TDependentEntity> (this Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<TEntity,TDependentEntity> collectionOwnershipBuilder, string name, string schema) where TEntity : class where TDependentEntity : class;
static member ToTable : Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)> * string * string -> Microsoft.EntityFrameworkCore.Metadata.Builders.CollectionOwnershipBuilder<'Entity, 'DependentEntity (requires 'Entity : null and 'DependentEntity : null)> (requires 'Entity : null and 'DependentEntity : null)
<Extension()>
Public Function ToTable(Of TEntity As Class, TDependentEntity As Class) (collectionOwnershipBuilder As CollectionOwnershipBuilder(Of TEntity, TDependentEntity), name As String, schema As String) As CollectionOwnershipBuilder(Of TEntity, TDependentEntity)

형식 매개 변수

TEntity

구성되는 엔터티 형식입니다.

TDependentEntity

이 관계가 대상으로 하는 엔터티 형식입니다.

매개 변수

collectionOwnershipBuilder
CollectionOwnershipBuilder<TEntity,TDependentEntity>

구성 중인 엔터티 형식에 대한 작성기입니다.

name
String

뷰 또는 테이블의 이름입니다.

schema
String

뷰 또는 테이블의 스키마입니다.

반환

여러 호출을 연결할 수 있도록 동일한 작성기가 instance.

적용 대상