Silverlight MVVM, RIA, and Validation
Posted
Sun, May 1 2011 15:43
by
Deborah Kurata
One of the biggest challenges of implementing validation in Silverlight is finding the appropriate technique based on your architecture and goals. There are lots of choices and lots of examples, but not all examples work in all scenarios. Plus many examples demonstrate techniques that are no longer necessary or valid in the current version of Silverlight or when using WCF RIA services.
Below are a set of posts on techniques for performing validation with Silverlight 4.0 using MVVM, WCF RIA Services, and custom business objects.
A few things to keep in mind if you are using Silverlight and WCF RIA Services:
- In most cases, the code should not need to throw exceptions for validation errors.
- The latest version of Silverlight/RIA provides automatic validation and a built-in validation error dictionary, so you do not have to write any code to build or populate validation errors.
The last point is an important one because there are videos and posts that go through the pages and pages of code required to manage your own validation and validation error dictionary. While this code is necessary and useful if you are using WCF directly, it is not necessary if you are using WCF RIA Services.
Here are the links:
Click on a link to navigate to the desired post.
Enjoy!