Hello everyone,
I am getting list of data from datatable with date also.
- List<Tble_accessLog> objTble_accessLog = new List<Tble_accessLog>();
- if (dt != null && dt.Rows.Count > 0)
- {
- objTble_accessLog = dt.AsEnumerable().Select(m => new Tble_accessLog()
- {
- accessLogId = m.Field<Int64>("accessLogId"),
- FullName = m.Field<string>("FullName"),
- AccessDate = m.Field<string>("AccessDate"),
- Action = m.Field<string>("Action")
- }).ToList();
- cnn.Close();
- }
- return objTble_accessLog;
After I am trying to bind this data to listview, then occurred date format error. Here AccessDate string datatype.
How can I solve this issue? Please help me.