Group: StrataFrame Developers
Posts: 6.6K,
Visits: 6.9K
|
You can do this a number of ways. Handle the ConcurrencyException event of the BO and just force to accept your changes. You can also set the BO to ignore concurrency altogehter by setting the UpdateConcurrencyType to None. Most likely, however, you are using OptimisticAllRows which can cause things like this. If you would use a RowVersion, then this would most likely not happen.
|