型号:
[DisplayFormat(ApplyFormatInEditMode = true, DataFormatString = @"{0:mm\:ss}")]
[Column("delay", TypeName = "interval")]
public TimeSpan Delay{ get; set; }
查看:
@Html.TextBoxFor(model => model.Delay, @"{0:mm\:ss}", new { @class = "form-control" })
在文本框中,显示格式一切正常,但当我尝试保存时,系统将分钟转换为小时,秒到分钟。我不明白为什么。任何解决方案?