开发者

What's the best way to validate EntityFramwork 4.0 classes?

开发者 https://www.devze.com 2022-12-26 21:20 出处:网络
I\'ve done a fair amount of searching but I\'ve yet to find an easy way to validate EntityFramework 4.0 entities passed accross the wire via WCF Data Services.Basically, I want to do something on the

I've done a fair amount of searching but I've yet to find an easy way to validate EntityFramework 4.0 entities passed accross the wire via WCF Data Services. Basically, I want to do something on the client like:

        Proxy.MyEntities entities = new Proxy.MyEntities(
            new Uri("http://localhost:2679/Service.svc"));

        Proxy.Vendor vendor = new Proxy.Vendor();

        vendor.Code = "ABC/XYZ";
        vendor.Status = "ACTIVE";

        // I'd like to do something like开发者_开发百科 the following:
        vendor.Validate();

        entities.AddToVendors(vendor);

        entities.SaveChanges();

Any help in this regard would be greatly appreciated!


If I were you I would use the System.ComponentModel.DataAnnotations framework.

There are many examples on the web for it.

You can use the ValidationAttributes like required, range etc and create your own attribute to perform custom validation.

See below how to validate an entity.

Type objectType = entity.GetType();

Dictionary<string, string> errors = new Dictionary<string, string>();

foreach (PropertyInfo propertyInfo in objectType.GetProperties().Where(w => w.CanRead))
{
    object value = propertyInfo.GetValue(entity, null);

    foreach (ValidationAttribute validator in propertyInfo.GetCustomAttributes(typeof(ValidationAttribute), false))
    {
        if (!validator.IsValid(value))
        {
            errors.Add(propertyInfo.Name, validator.ErrorMessage);
        }
    }
}

I hope this helps if you need anything else just ask

Regard

Daniel

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号