在我的模块中,我有一个EventPart
and EventPartRecord
。一切正常,直到我决定Address2
在零件和记录中添加一个新字段。我认为这很容易,我修改了我的记录如下
public virtual String Address2 { get; set; }
然后作为
public String Address2
{
get { return Record.Address2; }
set { Record.Address2 = value; }
}
现在要在表中添加列,我在 Migration 类中添加了如下方法
public int UpdateFrom3()
{
this.SchemaBuilder.AlterTable(typeof(SupportedEmploymentEventPartRecord).Name
, table => table.AddColumn("Address2", System.Data.DbType.String, c => c.Nullable().Unlimited()));
return 4;
}
我运行应用程序并在表中添加了列。到目前为止一切看起来都不错。
但奇怪的是,果园在更新和插入查询中不包括这个新字段。我可以看到该部分正在Address2
从发布的数据中更新该字段,但不知何故 Orchard 查询生成机制忽略了该字段。
有人可以帮我弄清楚出了什么问题。
谢谢