Crystal report not support null Datetime
问题 I am using crystal report with ado.Net, when datetime is coming null from database then showing error. if we use Nullable (using ?) property then crystal report can't support. Like:- _report = ( from user in users select new userModel() { UserId = user.Field<string>("userid"), CheckInTime = <user.Field<DateTime>("intime"), CheckOutTime = user.Field<DateTime>("outime"), TotalWorks = user.Field<Int32>("TotalWork") }) .ToList(); throwing error here...... and when we use Nullabe..:- public