hi
I want to get a record and mark Mydown as 1 then update that record, thats what I thought the code was doing below, but its adding a new record with all field blank except Mydown which =1
DataAccessAdapter adapter = new DataAccessAdapter(); ;
BarcodesEntity oBarcode = new BarcodesEntity(813824);
oBarcode.Mydown=1;
adapter.SaveEntity(oBarcode);
what am I doing wrong now?
thanks once again
Stuart