I am a beginner to MVC5 and Entity Framework, so please be gentle. I've searched endlessly for something related to this question to no avail, maybe because I don't understand the problem well enough.
The issue that I'm having is that when I 'Edit' my entries from my View, values that aren't explicitly set from within the Form end up getting set to 'NULL' in my database after db.SaveChanges() is called.
Two values which were set at time of Creation, Email and Date_Submitted, are being set to 'null'. Ideally, these values would not be changed when in Edit mode, I would like for them to remain set.
I tried changing everything I could think of with no luck, and creating a new controller from scaffolding doesn't give me any answers. What am I missing? Suggestions?