In my module, I have an EventPart and EventPartRecord. Everything was working fine until I decided to add a new field Address2 in the part and record. I thought it would be easy and I modified my Record as follow
public virtual String Address2 { get; set; }
and then part as
public String Address2
{
get { return Record.Address2; }
set { Record.Address2 = value; }
}
Now to add column in table I added the method in Migration class as follows
public int UpdateFrom3()
{
this.SchemaBuilder.AlterTable(typeof(SupportedEmploymentEventPartRecord).Name
, table => table.AddColumn("Address2", System.Data.DbType.String, c => c.Nullable().Unlimited()));
return 4;
}
I run the application and column was added in the table. Everything looks good so far.
But strange part is that orchard is not including this new field in update and insert query. I can see that part is updating the Address2 field from the posted data but somehow Orchard query generation mechanism is ignoring this field.
Can someone please help me to figure out what is going wrong.
thanx