views:

56

answers:

1

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?

A: 

This gets you the INotifyPropertyChanged part.

http://code.google.com/p/notifypropertyweaver/

Then IDataErrorInfo can be done in a base class.

Simon