Hello
There still is a bug in the insert.
If you have a table with a Primary Key thats NOT autoincremented, it wont run the insert.
I made this change
if (schema.PrimaryKey != null)
{
object qResult = DataService.ExecuteScalar(cmd); // Moved this line out of the AutoIncrement test
if(schema.PrimaryKey.AutoIncrement)
{
item.SetColumnValue(schema.PrimaryKey.ColumnName, qResult);
if(qResult != null)
int.TryParse(qResult.ToString(), out result);
}
}
else
{
result = DataService.ExecuteQuery(cmd);
}
Im using the newest RC1 download today.
BR
Søren