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
Use the Column attribute to specify the database column name
[Column("3DSecureStatus")] public string ThreeDSecureStatus { get; set; }
Or use fluent mapping like
Property(x => x.ThreeDSecureStatus).HasColumnName("3DSecureStatus");