EntityTypeConfiguration クラスにマップされているテーブルを見つける必要があります。例えば:
public class PersonMap : EntityTypeConfiguration<Person>
{
public PersonMap()
{
...
this.ToTable("Persons");
....
}
}
逆マッピングのようなものが必要です:
var map=new PersonMap();
string table =map.GetMappedTableName();
どうすればこれを達成できますか?