Home
Options

Update Not Working

Can anyone see why this update does not update the value in the table?

var results = (from bl in a_Bellows_Lots
where bl.Job == "A2559038A"
where bl.BellowsLot == "17213A"
select bl).SingleOrDefault();

results.Quantity = 1;
this.SubmitChanges();


Comments

Sign In or Register to comment.