I'm working on a multi-user winforms app that uses RadGrid, bound to a SQL Server table.
What's the best way to handle concurrency issues?
- Two people trying to save the same record at the same time?
- One person is working on a record (or set of records) while another person saves (commits changes to db) that record(s).
- One person deletes a row and commits changes to db while another is viewing that row
- Other scenarios?