Issue:
Trying to get a decimal property of an EF generated model to display more than default 2 decimal place accuracy.
Use
N6 as the numeric format string.myDecimal.ToString("N6");
or
string.Format("{0:N6}", myDecimal);