Могу ли я установить значение для свойства, подобного этому
public string MyProperty { get { return _GetValue(); } set { _GetValue(); } }
public static string _GetValue()
{
string name = null;
using (HROEF.Entities context = new HROEF.Entities())
{
var result = (from my linq Statement).First().ToString();
name = result;
}
return name;
}
На мой взгляд
@Html.DisplayFor(model=>Model.MyProperty)
что-то не так в этом?
Это не отображает значение на мой взгляд
любая помощь?