Articles : Page 1 of 1
- Filter:
- Nuget
- validation
-
Model Metadata and Validation Localization using Conventions
Jul 1114By default, ASP.NET MVC leverages Data Annotations to provide validation. The approach is easy to get started with and allows the validation applied on the server to “float” to the client without any extra work. However, once you get localization involved, using Data Annotations can really clutter your models. For example, the following is a simple model class with two properties. public class Character { public string FirstName { get; set; } public string LastName { get; set; } } Noth...
-
FluentValidation v3 available
Jun 1125FluentValidation v3 is now available for download. You can grab the binaries from the CodePlex page or by installing it using NuGet: install-package FluentValidation If you want integration with ASP.NET MVC 3, you can install the FluentValidation.Mvc3 nuget package: install-package FluentValidation.Mvc3 For a summary of what’s new in this release, check out the following posts: [...]...
-
FluentValidation 2.0 Beta 1 Available
Oct 1008FluentValidation 2.0 beta 1 is now available for download. This release contains the following changes: Integration with ASP.NET MVC 3 Beta Windows Phone 7 compatibility Performance improvements to AttributedValidatorFactory Bug fixes I’ve also put together NuPack packages for FluentValidation 1.3. From within the Package Manager console you can use the command Add-Package FluentValidation to install [...]...
- 1

