I use the LINQ to SQL Classes to access to my database. Now I want to use the LINQ to SQL Classes for WPF DataBindings and validation. How do I implement these two interfaces to my projects Model? Is it possible implement INotifyProperty automatically?
views:
56answers:
1
A:
This gets you the INotifyPropertyChanged part.
http://code.google.com/p/notifypropertyweaver/
Then IDataErrorInfo can be done in a base class.
Simon
2010-10-12 22:33:13