I simply am trying to declare partial classes for the tool-generated LLBLGenPro (partial) classes, so that I can use DataAnnotation for validation purposes. However, things don't seem to work here.

Following is how my code looks like :

namespace MyApp.DataLayer.EntityClasses
{
    [Serializable]
    public partial class LoginEntity : CommonEntityBase, ISerializable
    {
        .....
    }
}

And for DataAnnotations ...

namespace MyApp.DataLayer.EntityClasses
{
    [MetadataType(typeof(LoginEntityValidation))]
    public partial class LoginEntity
    {

    }

    public class LoginEntityValidation
    {
        [Required(ErrorMessage = "Required !")]
        public string Username { get; set; }
    }
}

// This gives me compile time errors "MyApp.DataLayer.EntityClasses.LoginEntity' does not contain a constructor that takes 1 arguments" and so on.

Any idea on how to make this working?

Thanks in advance !

link|improve this question

75% accept rate
feedback

1 Answer

You should not use your entity classes in views. You should use ViewModel classes and put validation there. For entity->viewmodel conversion you can use AutoMapper

link|improve this answer
Thanks for your reply ! Ok, I have configured the AutoMapper. But how do I make it to validate my core entities? Basically, I want to attach validation attributes to my core entities, so that validation can occur at any place independent of any particular layer. This works fine with EntityFramework, though. – Gurdeep Apr 13 '11 at 8:40
I think mixing validation and business logic is bad idea. You should apply validation logic to user input that initiates data changes and keep your domain model for business logic – xelibrion Apr 13 '11 at 13:56
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.