Posts by AlexCar • 1 point
1 post
-
0
votes1
answer24
viewsA: Model does not recognize the Datetime format
You can use Timespan type. For example: TimeSpan timeSpan = new TimeSpan(7, 15, 33); Console.WriteLine(timeSpan.ToString()); // "07:15:33" So stay like this: [Display(Description = "Duration of the…