I'm having an issue with in EFCore 5.0.9 with Firebird EFCore 8.5.4. When using ``` C# 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?