Recently I found out about xVal.WebForms project at CodePlex.com. Its a good implementation of XVal for ASP.Net WebForms made by John Rummell. I missed Validation Summary support so I upgraded John’s code so it could work with XVal 1.0. I submitted two patches modifying ModelValidator.cs and xVal.jquery.validate.js....
We’ve been working with DbLinq for a while now, at HexaSystems and recently using it together with Dynamic Linq and SQLite I programed a call to the Count method of a Queryable object as follows: 1public static int Count(this IQueryable source) 2{ 3 if (source == null) throw new ArgumentNullException("source"); 4 5...