If you want to change every table name in your model with name equal to type name add RemovePluralizingTableNameService . Into ShamanOptions. Simplest way is to create GetShamanOptions static method in DbContext class
1 2 3 4 5 6 |
private static ShamanOptions GetShamanOptions() { return ShamanOptions .Default .With<RemovePluralizingTableNameService>(); } |