资 源 简 介
This is a spin-off project of the **valy** project. For more information about the **valy** project please visit the [valy project page](http://code.google.com/p/valy/)
While developing valy I noticed that there was to much framework being created for simple validation tasks. 80% of validation is "simple". Simple not in the sense of trivial, but simple in the sense that you do not want to initialize a full framework to validate a user name.
So to med this situation I redesigned valy and made it as lightweight as possible. On my quest for simplicity I switched from XML configuration to a fluent interface.
What fluentValy offers you is best described in the following example.
Let"s take that you have a User class that looks like the following:
public class User{ public string UserName { get; set; } public string Password { get; set; }