I am new to MVC3 C#. I need to have a column in the database called 3DSecureStatus for legacy purposes.
3DSecureStatus
When I call the column this and insert in the applic
Rename _3DSecureStatus to something else.
_3DSecureStatus
Entity Framework Code First does not allow properties/columns to have underscores or numbers in the beginning of the name.
So you have to change this until this is fixed.