Hi there,
I'm trying to use the DB.Insert() as follows:
SubSonic.Insert i = DB.Insert().Into(MyTable.Schema)
.Values("abc", "xyz");
but it complains that I don't have the right number of columns for select list
I checked DB.Insert().Into(MyTable.Schema).SelectColumns and I noticed that the primary key is not included so how would u fill this in?
I tried the following:
SubSonic.Insert i = new Insert(MyTable.Schema);
i.Value(MyTable.NameColumn, "abc");
i.Value(MyTable.CompanyColumn, "xyz");
this seems to work but the problem is the names of the columns are not fully qualified so what can be done
Regards DotnetShadow