Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
モデルの小数フィールドを小数点以下 3 桁で表示する方法。現在は 2 桁に短縮されています。
現在、1,237 は 1,24 として表示されます;)
次のように、View Model でデータ注釈を使用できます。
[DisplayFormat(DataFormatString = "{0:0.00}", ApplyFormatInEditMode = true)] public decimal Num { get; set; }