I have two grids, gSummary
and gInput
. gSummary
does a bit of data massaging (totals, etc) from the DB and gInput
is where the user can directly modify the data itself.
I'm finding that the data is submitted correctly (the DB is successfully atomically updated at every change) but that unless I refresh the entire gSummary
table, the gSummary
info is out of date and I have to set the DataSource
again. Is there some way I can update single rows, or somehow refresh the data without refreshing all the data?
edit: I'm using Linq to Sql.