我需要在模型中将DateTime字段转换为Date 我的观点是这个
<input class="input_width02 text-box single-line" id="PrdExpiry_@row" name="PrdExpiry[@row]" type="date" autocomplete="off" onchange="productExpDate(@row)" style="width:110px" value="@Model.itemDetails[i].Prd_ExpDateFormat">
我的模特是
public Nullable<System.DateTime> Prd_ExpDate { get; set; }
答案 0 :(得分:0)
Foe nullable属性,您需要先检查值。
if(Prd_ExpDate.HasValue)
{
var shortDate = Prd_ExpDate.Value.ToShortDateString();
}