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)

リレーショナル データベースをターゲットにするときにエンティティがマップするビューまたはテーブルを構成します。

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

ビューまたはテーブルの名前。

戻り値

複数の呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象

ToTable(CollectionOwnershipBuilder, String, String)

リレーショナル データベースをターゲットにするときにエンティティがマップするビューまたはテーブルを構成します。

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

ビューまたはテーブルのスキーマ。

戻り値

複数の呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象

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

リレーショナル データベースをターゲットにするときにエンティティがマップするビューまたはテーブルを構成します。

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

ビューまたはテーブルの名前。

戻り値

複数の呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象

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

リレーショナル データベースをターゲットにするときにエンティティがマップするビューまたはテーブルを構成します。

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

ビューまたはテーブルのスキーマ。

戻り値

複数の呼び出しをチェーンできるように、同じビルダー インスタンス。

適用対象