-
-
Notifications
You must be signed in to change notification settings - Fork 77
DateOnly and TimeOnly in EFCore #1025
Copy link
Copy link
Closed
Description
I'm having an issue with in EFCore 5.0.9 with Firebird EFCore 8.5.4.
When using
public partial class Timeentry{
[Column(TypeName="date")]
public DateOnly Day { get; set; }
}in my model, and try to create a migration i get following error:
The property 'Timeentry.Day' is of type 'DateOnly' which is not supported by the current database provider.
How can i work with DateOnly and TimeOnly using the Firebird EFCore Provider?
Reactions are currently unavailable