.net MVC5+EF Model中有个日期新增的时候可以非必填。 30
.netMVC5+EF新建Model[Display(Name="任务名称")]publicstringName{get;set;}[Display(Name="遇到问题...
.net MVC5+EF 新建Model
[Display(Name = "任务名称")]
public string Name { get; set; }
[Display(Name = "遇到问题")]
public string Question { get; set; }
[Display(Name = "解决方案")]
public string Solution { get; set; }
[Display(Name = "主要内容")]
public string Text { get; set; }
[Display(Name = "是否完成")]
public Boolean IfFinish { get; set; }
[Display(Name = "完成时间")]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
public DateTime Finish_Date { get; set; }
然后自动生成Controller 跟View 含有增删改功能;
现在我想把新增跟修改中,完成时间 非必填,该如何实现? 展开
[Display(Name = "任务名称")]
public string Name { get; set; }
[Display(Name = "遇到问题")]
public string Question { get; set; }
[Display(Name = "解决方案")]
public string Solution { get; set; }
[Display(Name = "主要内容")]
public string Text { get; set; }
[Display(Name = "是否完成")]
public Boolean IfFinish { get; set; }
[Display(Name = "完成时间")]
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
public DateTime Finish_Date { get; set; }
然后自动生成Controller 跟View 含有增删改功能;
现在我想把新增跟修改中,完成时间 非必填,该如何实现? 展开
1个回答
展开全部
[DisplayFormat(DataFormatString = "{0:yyyy-MM-dd}", ApplyFormatInEditMode = true)]
[Required(AllowEmptyStrings=true)]
public DateTime Finish_Date? { get; set; }
这样试试,不行再反馈
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询