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);
When trying to insert I get this error Overflow
SqlDbType.Time. The value '3.03: 03: 00' is out of range. He must be between 00: 00: 00.00 and 23: 59: 59.9999999.
In SQL this property is being mapped as Time (7);
I'm using EF 6 with ASP.NET 4.52