In EF Code first, I want to drop one column from one table & then delete another table.
After removing one column from class file, automatically one migration file generated.
But how to delete table.
what command need to fire? Do I need to delete complete class file & also remove following line from Context file?
public DbSet<TableClassName> TableClassNameSet { get; set; }
I use, Add Migration 'TableClassName' command.
So what is best way to remove table?