Timespan needs to map to a DbType of DateTime not Time

pull/134/head
Christopher Jolly 3 years ago
parent 88ab948f12
commit 29cd983826

@ -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