0
nparejod created
- ABP Framework version: v4.4.0
- UI type: Blazor
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
- Exception message and stack trace: 42703: column s.ActivationEndDate does not exist
- Steps to reproduce the issue: Update from 4.3 to 4.4
I just updated my project from Framework 4.3 to 4.4.0 as per this instructions: https://blog.abp.io/abp/ABP.IO-Platform-4.4-Final-Has-Been-Released!
Now, when I try to execute the app, all I see is this message: 42703: column s.ActivationEndDate does not exist
Please help.
Nestor
2 Answer(s)
-
0
There is no breaking change with this version. However, if you are using Entity Framework Core, you will need to run the
Add-Migration
command to add a new database migration since some changes done in the module database mappings.https://blog.abp.io/abp/ABP-Platform-4-4-RC-Has-Been-Released
Please let us know if it works after you try it.
-
0
After adding the migration, it is workign fine! Thanks for your help.