Code First EFでそよ風を使用しています。私の製品 DbContext には、例外をスローする IDatabaseInitializer があります!context.Database.CompatibleWithModel(true)
。ドキュメントで提案されているようなコンテキストを作成すると、データベースの互換性を確認できません。
// The following line will throw NotSupportedException.
// Unable to verify the compatibility of the model because
// the DbContext instance was not created using Code First patterns.
var context2 = new MyDbContext(EntityConnection, false); // create a DbContext using the existing connection
ContextProvider の EntityConnection を提供する DbContext をインスタンス化するにはどうすればよいですか?