DbMigrationsConfiguration.SetSqlGenerator メソッド
[このページは、Entity Framework 6 に関するページです。最新バージョンは、'Entity Framework' NuGet パッケージとして入手できます。Entity Framework の詳細については、msdn.com/data/ef を参照してください。]
指定したデータベース プロバイダーで使用される新しい SQL ジェネレーターを追加します。
名前空間: System.Data.Entity.Migrations
アセンブリ: EntityFramework (EntityFramework.dll 内)
構文
'宣言
Public Sub SetSqlGenerator ( _
providerInvariantName As String, _
migrationSqlGenerator As MigrationSqlGenerator _
)
'使用
Dim instance As DbMigrationsConfiguration
Dim providerInvariantName As String
Dim migrationSqlGenerator As MigrationSqlGenerator
instance.SetSqlGenerator(providerInvariantName, _
migrationSqlGenerator)
public void SetSqlGenerator(
string providerInvariantName,
MigrationSqlGenerator migrationSqlGenerator
)
public:
void SetSqlGenerator(
String^ providerInvariantName,
MigrationSqlGenerator^ migrationSqlGenerator
)
member SetSqlGenerator :
providerInvariantName:string *
migrationSqlGenerator:MigrationSqlGenerator -> unit
public function SetSqlGenerator(
providerInvariantName : String,
migrationSqlGenerator : MigrationSqlGenerator
)
パラメーター
- providerInvariantName
型 : System.String
SQL ジェネレーターを設定するデータベース プロバイダーの名前。
- migrationSqlGenerator
型 : System.Data.Entity.Migrations.Sql.MigrationSqlGenerator
使用される SQL ジェネレーター。