vote up 1 vote down star

Hi,

i am using ASP.NET MVC & ADO.NET Entity Framework in a project. I want to add validation logic to my entities via partial classes. It works similar like shown in the NerdDinner.com ASP.NET MVC Application which is using LINQ2SQL. The main difference is, that i have to use the"OnPropertyChanging" event instead the "OnValidating" like in LINQ2SQL.

There are some problems when doing it that way: - The "OnPropertyChanging" event is not the optimal point of calling validation logic, because it always triggers, even on creating a calling the default constructor. This really can cause serious problems (not only performance problems). - Together with the MVC framework there are problems when using the "EntityState.Detached" (i couldn't find any other way) to determine if a entity needs to be validated or not. Because a entity loses its entity sate during it gets displayed in the view (because on POST-event a new entity object is created instead of returning the original one).

My question is: Is there a better way of adding validation to ADO.NET Entities? I couldn't find any tutorials using a practical way of adding validation to ADO.NET Entities.

flag

69% accept rate

1 Answer

vote up 1 vote down

Personally, I don't use the OnXChanging partial. You'd have to have another partial class for the entity that did something for that method signature.

I have one centralised save, (either by a helper method for that entity, or a save on a repository pattern implementation for that entity) where I validate the values meet my criteria before performing my context.SaveChanges().

Nor would I use the onpropertychanging event for validation, if I have a centralised save, then I only need to validate in one place, I would leave that for specific triggers at other points. (Like if user changed X then update Y)

link|flag
1  
OnXChangeing isn't an event you are right. But OnPropertyChanging is an event. – Alexander Jul 17 at 9:03
Wow, never seen that before. I'll edit. – Nath Jul 17 at 9:23
Yes OnPropertyChanged is a nice central event. But you still have the problem hat validation triggers unnecessary a lot of times. The EventState.Detached doesn't work with ASP.NET MVC because it gets lost...that's the reason why web applications are 'stateless' :-) – Alexander Jul 17 at 11:34
Yes indeedy, that's why I'd use some sort of repository pattern to nicely detach to business objects / reattach to EF – Nath Jul 17 at 12:05

Your Answer

Get an OpenID
or

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