欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

无法确定条件表达式的类型,因为“”和“System.DateTime”之间没有隐式转换----解决办法

程序员文章站 2022-05-13 23:45:06
例子:(报错了) public DateTime? time { get; set; } time = item.HospOutDate.HasValue ? DateTime.Parse(item.HospOutDate.Value.ToString("yyyy-MM-dd HH:mm:ss")) ......

例子:(报错了)

  public datetime? time { get; set; }

  time = item.hospoutdate.hasvalue ? datetime.parse(item.hospoutdate.value.tostring("yyyy-mm-dd hh:mm:ss")) : null;

错误提示:无法确定条件表达式的类型,因为“<null>”和“system.datetime”之间没有隐式转换

 

解决办法:

添加: datetime? timenull = null;

time = item.hospoutdate.hasvalue ? datetime.parse(item.hospoutdate.value.tostring("yyyy-mm-dd hh:mm:ss")) : timenull ;