I have an existing database.I am using code first from existing database.I am able to add new column to an existing table using add-migration and update database command.
But when I want to generate new table using a class new table is not created. For example I want to create a new table LocaleResource.I have created a new class. I have fired add-migration LocaleResourceClass and then Update database command. But no new table is creating.I am using Entity Framework 6.1.
Please help me how to do that.