Hi,
I'm using linq to retrieve a row from a table in the database. Now I only update 1 column. Then I update it back into the database.
this goes well, except for the times any of the other fields is changed by another process/thread/user In that case I get an exception (optimistic concurrency), telling me to look out, values have been changed since I last got the object with linq.
Since I'm only interested in this 1 column, can I tell linq to just update this column and ignore the others? (and warn me this one column has indeed been changed)
R