Here LogInTime and LogOutTime are datetime datatype. How to solve this error?
- AccessDate = (DateTime.TryParse(x.LogOutTime, out parsed)) ? parsed.ToShortDateString() : "Unknown",
- AccessTimeFrame = (DateTime.TryParse(x.LogOutTime, out parsed)) ? parsed.ToShortTimeString() : "Unknown",

Nitin SontakkePosted Nov 9, 2016, 7:34 AM
Manas MohapatraPosted Nov 9, 2016, 7:12 AM
Abhilash J APosted Nov 9, 2016, 6:21 AM
But I have a another question. I am using ADO.NET for SQLite DB select query. After excute this query return null. But there is data exist. The LogInTime is datetime format in SQLite DB. How can I solve this?
Manas MohapatraPosted Nov 9, 2016, 5:26 AM