Hi People,
I have started using the DTO pattern, but run into a bit of a catch, our application uses RowVersion for concurrency checking, converting the entities to DTO works fine and they travel across to the application happily, but the catch is when you convert the DTO back into and entity I get and exception that the rowversion is readonly, which makes sense. but obviously in this situation i need to be able to set it without it throwing an error, how do I set the readonly rowversion field on the entity?
Thanks!
Alex