我有一个 POCO 对象(EF 代码优先)
public class ExampleTestOfDataTypes
{
public string StringProp { get; set; }
}
比我有它的配置类:
public class ExampleTestOfDataTypesConfig : EntityTypeConfiguration<ExampleTestOfDataTypes>
{
public ExampleTestOfDataTypesConfig()
{
ToTable("CustomTableName");
this.Property(m => m.StringProp).HasColumnName("CustomString");
}
}
当我在配置文件中更改它时,如何获得新的表名和新的 StringProp 名称(考虑到我有 ExampleTestOfDataTypesConfig 和 ExampleTestOfDataTypes)
谢谢