-
Notifications
You must be signed in to change notification settings - Fork 15
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect ResourceManager path for RESX #60
Comments
Why would there be a ".ApplicationDbContext" added? How are you organizing your folders? The migrations should be inside their own folder. |
I migrated from a project that had 2 contexts. Each of them are in their own folder /Migrations/ApplicationDbContext/Configuration.cs In this specific project, I don't have the 2nd context, but I always had it setup with the /ApplicationDbContext/ folder. Since the new .net core and this update of Migrator EF6, this new RESX is output without the correct assembly. |
Are you sure you're using the |
So you're telling me you don't use |
All of this worked just fine before RESX showed up. |
With the new version 2.1.0, there is a RESX being created alongside the .cs and Designer.cs, however, the path mentioned in the designer does not work properly.
After calling
dotnet ef6 migrations add ConditionEntryToCondition
I get
But it should be:
If I run
dotnet ef6 database update
I get the following:
Generated code says:
[GeneratedCode("EntityFramework.Migrations", "6.1.3-40302")]
The text was updated successfully, but these errors were encountered: