4
I have a class with the following property.
public TimeSpan TempoIdeal { get; set; }
Estou atribuindo esta propriedade com
TempoIdeal = new TimeSpan(days: 3, hours: 15, minutes:10, seconds: 0);
While trying to enter I get this error Overflow
Sqldbtype.Time. The value '3.03:03:00' is out of range. It must be between 00:00:00.0000000 and 23:59:59.9999999.
In SQL this property is being mapped as Time(7);
I am using EF 6 with ASP.NET 4.52