を使用して、ターゲットプロジェクト 'xxx'がマイグレーションアセンブリ 'xxx'と一致しません。アセンブリ内の2番目のDBContextの移行クラスを構築しようとしています。 Add-Migration AlertInitial -c Axper.Data.Persistence.Context.AlertContext
と「パッケージコンソール管理」を使用してMigrate "aspnet Core 1.0 RC2 -
をしかし、それは失敗し、私は、このエラーを与える:このコマンドを使用して
Your target project 'AxPortal' doesn't match your migrations assembly 'Axper.Data.Persistence'.
Either change your target project or change your migrations assembly. Change your migrations assembly by using DbContextOptionsBuilder. E.g. options.UseSqlServer(connection, b => b.MigrationsAssembly("AxPortal")).
By default, the migrations assembly is the assembly containing the DbContext.
Change your target project to the migrations project by using the Package Manager Console's Default project drop-down list, or by executing "dotnet ef" from the directory containing the migrations project.
私はこのエラーが何を意味するか理解できない、と何をすべきか修正しますそれ。 誰かを助けることができますか?
私はしたいが、マイグレーションクラスを保持するプロジェクトでは、クラスライブラリです。 RC2以降、クラスライブラリはまだサポートされていません。 – Hugo