Timespan needs to map to a DbType of DateTime not Time

pull/133/head
Christopher Jolly 3 years ago
parent 4219015cc0
commit fbd8398d95

@ -15,7 +15,7 @@ namespace EntityFrameworkCore.Jet.Storage.Internal
public JetTimeSpanTypeMapping(
[NotNull] string storeType,
[NotNull] IJetOptions options)
: base(storeType, options, System.Data.DbType.Time, typeof(TimeSpan))
: base(storeType, options, System.Data.DbType.DateTime, typeof(TimeSpan))
{
_options = options;
}

Loading…
Cancel
Save