views:

11

answers:

1

Do you know of a fast and simple entity validation framework that could be used in a Compact Framework project?

I've done some experiments with FluentValidation (using db4o System.Linq.Expressions, but it's rather slow) and EViL (but it seems a bit half-baked).

Can you suggest any other or maybe point me to some resources on how to design such a framework so that it's both easy to use and performant?

A: 

The Legend framework has a lightweight set of fluent validation extensions (in Legend.Core.Tests). I've not done any perf experiments on it, but it's at least another data point you could look at.

ctacke