Value Object and View Model Property

Posted by William on Stack Overflow See other posts from Stack Overflow or by William
Published on 2010-03-22T04:33:52Z Indexed on 2010/03/22 4:41 UTC
Read the original article Hit count: 254

Filed under:
|
|
|

I am working on a solution that used DDD for architecture. I have a property in my ViewModel which points to a ValueObject, the view model also implements INotifyPropertyChanged interface. The value of the ValueObject will change as a user enters data on the front end. The problem I am running into is the value object is suppose to be immutable. How can I work around this issue? Thank you in advance.

© Stack Overflow or respective owner

Related posts about ddd

Related posts about mvvm