我是.NET 的新手。我无法找出正确的语法来在我的视图中显示三位小数。
在我的模型中,我目前有:
<<Display(name:="Straight Rate")>
Public Property StraighRate() As Decimal
Get
Return mStraightRate
End Get
Set(ByVal value As Decimal)
mStraightRate = value
End Set
End Property
我知道我需要在我的模型中使用 DisplayFormat,但我无法弄清楚使它工作的语法。
在我的模型中添加 DisplayFormat 的语法后,我是否需要在我的视图中做任何额外的事情?
以下是我目前的观点:
@Html.DisplayFor(Function(modelItem) currentItem.StraightRate)