Indicates the current multiple updates conflict resolution strategy on the client.
| C# | Visual Basic | Visual C++ |
public ObjectRefreshMode RefreshMode { get; set; }
Public Property RefreshMode As ObjectRefreshMode Get Set
public: property ObjectRefreshMode RefreshMode { ObjectRefreshMode get (); void set (ObjectRefreshMode value); }
As objects physically exist on the client side on multiple machines,
multiple clients may modify the same object independently.
After updating the database, there raises a discrepancy between the object representation in the database,
and the real object on the client that is not aware about the update.
This problem should be resolved via transactional isolation, but for the time being the flags below should
help in solving such problems.
The mode can be changed programmatically between calls.