EF框架 对字段属性为NULL的空值处理 类型前面加上?保证EF列表读取显示数据不会报异常

譬如:

     public int? FlowStatus
        {
            get; set;
        }

        public DateTime? UpdateTime
        {
            get; set;
        }

   

原文地址:https://www.cnblogs.com/Warmsunshine/p/9121192.html