-
Notifications
You must be signed in to change notification settings - Fork 86
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does this support DateOnly/TimeOnly? #142
Comments
Hello @VictorioBerra , That's a good question; I know we already support it for our Entity Framework Extensions library, but I'm not sure for Dapper Plus. I will ask my developer to look at it. Best Regards, Jon |
Hello @VictorioBerra , Just to let you know that Best Regards, Jon |
That is exciting, thank you! So we can create a MSSQL |
Yup, as soon as the new version is released. I didn't test it but my employee told me it could already work with the current version by adding both type this way: DapperPlusManager.AddCustomSupportedType(typeof(DateOnly));
DapperPlusManager.AddCustomSupportedType(typeof(TimeOnly)); Best Regards, Jon |
Hello @VictorioBerra , The support to Could you test it and let us know if everything is working as expected? Best Regards, Jon |
Thank you @JonathanMagnan sorry for the delay, it worked great! |
A recent PR to Dapper added support for DateOnly/TimeOnly. Is creating a
date
field in Microsoft SQL Server + DateOnly in C# supported by zzzprojects Dapper-Plus?The text was updated successfully, but these errors were encountered: