Skip to content

DOCSP-43047 - DateOnly/TimeOnly #244

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

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion source/whats-new.txt
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,19 @@ The 3.0 driver release includes the following new features:
This type is available in .NET 5 and later.
To learn more about the ``Half`` type, see the
`Half Struct <https://learn.microsoft.com/en-us/dotnet/api/system.half?view=net-8.0>`__
API reference page on MSDN.
API reference page on MSDN.

- Adds support for the ``DateOnly`` type, which represents a date value with no
time component. This type is available in .NET 6 and later. To learn more about the
``DateOnly`` type, see the
`DateOnly Struct. <https://learn.microsoft.com/en-us/dotnet/api/system.dateonly?view=net-6.0>`__
API reference page on MSDN.

- Adds support for the ``TimeOnly`` type, which represents a time value with no
date component. This type is available in .NET 6 and later. To learn more about the
``TimeOnly`` type, see the
`DateOnly Struct. <https://learn.microsoft.com/en-us/dotnet/api/system.timeonly?view=net-6.0>`__
API reference page on MSDN.

.. _csharp-version-2.28:

Expand Down
Loading