Activity overview
Latest activity by Andrew
I’ve run into a similar issue before. Usually, this happens if the migration snapshot isn’t fully in sync with the project. A quick fix that worked for me was:
Refresh the database model.
Rebuild the project.
Ensure that you clean any cached migrations before attempting to try again.
Sometimes you also need to explicitly re-add the stored procedures/views so the migration generator can track them properly. If you’re looking for more tips around performance tuning and optimization while handling migrations, you might also find https://bottleneckcheck.com helpful. / comments
I’ve run into a similar issue before. Usually, this happens if the migration snapshot isn’t fully in sync with the project. A quick fix that worked for me was:
Refresh the database model.
Rebuild t...