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.
模板文件的名称是什么是我的主要问题?如果有的话@model DateTime?,我可以将它用于直接日期时间吗?
@model DateTime?
MS 似乎已经放弃了一些可空值的编辑器。
这设置起来相当简单
有@model DateTime?作为模型。命名文件DateTime.cshtml。
DateTime.cshtml
根据您计划如何渲染输入,您可能必须在模板中包含一些逻辑,如
@if (Model == null) { // do this } else { // do that }