In Orchard I had a model called MachineRecord with some properties and all worked fine, but now I added one property, DateAdded and when I add some sample data to the db, all values are being posted, exept that property I added later.
MachineRecord.cs
public class MachineRecord
{
public virtual int Id { get; set; }
public virtual GroupRecord GroupRecord { get; set; }
public virtual int MachineNumber { get; set; }
public virtual string Title { get; set; }
public virtual string Description1 { get; set; }
public virtual string Description2 { get; set; }
public virtual string Description3 { get; set; }
public virtual string Description4 { get; set; }
public virtual string Description5 { get; set; }
public virtual string Description6 { get; set; }
public virtual int SerialNumber { get; set; }
public virtual string PriceType { get; set; }
public virtual decimal Price { get; set; }
public virtual int Year { get; set; }
public virtual DateTime DateAdded { get; set; }
}
Here is where I add some sampledata, as I said, before adding that property it all worked fine.
public void AddItems()
{
GroupRecord groupRecord = new GroupRecord()
{
Name = "Grondbewerking"
};
groupRepository.Create(groupRecord);
MachineRecord machineRecord = new MachineRecord()
{
GroupRecord = groupRecord,
Title = "Hassia zaaimachine",
MachineNumber = 100000,
Description1 = "25 Pijpen",
Description2 = "Traploos",
Description3 = "Mech. markeurs",
Description4 = "Max. 30 pijpen",
Description5 = "+ na egje",
Description6 = "Ongecontroleerd",
SerialNumber = 100001,
Price = 1600.00m,
PriceType = "Marge",
Year = 2005,
DateAdded = new DateTime(2012, 11, 9)
};
machineRepository.Create(machineRecord);
}
So I stepped into the code and finally I came to a method where something goes wrong, as we can see here the value and property is actually in the entity, so that's ok, but when I have a look at the other parameters, like propertyNames as you can see here it has all the property names, exept DateAdded! So I looked further an saw the SQL Query that's generated at the end, the property is not in there, so the database cell is been filled with NULL.
I made sure the datatype of the db column is datetime, and I removed mappings.bin so NHibernate would cache all properties again, but with no result.
EDIT:
Forgot to post my migrations.cs.
Migrations.cs
public class Migrations : DataMigrationImpl
{
public int Create()
{
SchemaBuilder.CreateTable("MachineRecord", table => table
.Column<int>("Id", c => c.PrimaryKey().Identity())
.Column<int>("GroupRecord_Id")
.Column<int>("MachineNumber", c => c.NotNull())
.Column<string>("Title", c => c.NotNull().WithLength(40))
.Column<string>("Description1", c => c.WithLength(70))
.Column<string>("Description2", c => c.WithLength(70))
.Column<string>("Description3", c => c.WithLength(70))
.Column<string>("Description4", c => c.WithLength(70))
.Column<string>("Description5", c => c.WithLength(70))
.Column<string>("Description6", c => c.WithLength(70))
.Column<string>("SerialNumber", c => c.WithLength(6))
.Column<string>("PriceType", c => c.NotNull())
.Column<decimal>("Price", c => c.NotNull())
.Column<int>("Year", c => c.WithLength(4))
.Column<DateTime>("DateAdded", c => c.WithType(DbType.DateTime))
);
SchemaBuilder.CreateTable("GroupRecord", table => table
.Column<int>("Id", c => c.PrimaryKey().Identity())
.Column<string>("Name")
);
return 1;
}
}
Does anyone know how to fix this? Thanks in advance!