Is the ViewModel in asp.net comparable to the ViewModel in WPF
问题 If you know the MVVM pattern for WPF then you know Josh smith msdn article where a CustomerViewModel does not hold a simple property like: public string FirstName {get;set;} Rather a ViewModel wraps a Model and delegates the property access like this: public string FirstName { get { return _customer.FirstName; } set { if (value == _customer.FirstName) return; _customer.FirstName = value; base.OnPropertyChanged("FirstName"); } } I have not seen this in asp.net mvc. Is this due to the missing