I know there are many topics about this error message but none of them is similar my problem. I am using Entity Framework 6. I have changed my entity and I have to run add-migration and then update-database. but when I run add-migration the newly created class public partial class Test: DbMigration contains two empty Up and Down methods. so when I run update-database it does not make any changes on the database. and I am get this error always.
I am getting this error when I run update-database. I think the problem occur becasue UP and Down methods are empty and no changes are made into the database when I run update-database.