views:

255

answers:

2

Hi,

I have custom class level validation attribute, inheriting from ValidationAttribute, on my model.

How come it doesn't register a key in the ModelState when its IsValid is false? I can see the the error message in the ModelState.Values collection, but the ModelState.Keys collection only shows an empty string "". Can I provide a key for it - presumably this is because its not assigned to a property?

I wanna be able to use ModelState.Remove in my controller to remove this error upon a certain condition, but I have no Key!

Any ideas?

A: 

How about checking ModelError.Exception in IModelBinder.OnModelUpdated.

takepara
A: 

I happen to have the same problem. I wonder if you could find a solution?

Thanks.