I am currently working on a .net MVC solution where the model is basically built up from several entities that are defined in an EDMX.
The problem that I have is that if a user does not enter a value for a non nullable value (in this case a decimal) the null value can't be identified as we can't put null in the model. I know you can look in the ModelStateDcitionary to see what values were passed but is there a different way of doing it?