https://github.com/fluxera/fluxera.temporal
A libary that provides temporal types.
https://github.com/fluxera/fluxera.temporal
date datetime dotnet dotnet7 duration time timespan
Last synced: 12 months ago
JSON representation
A libary that provides temporal types.
- Host: GitHub
- URL: https://github.com/fluxera/fluxera.temporal
- Owner: fluxera
- License: mit
- Created: 2022-02-25T20:23:19.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-02-24T15:07:34.000Z (over 3 years ago)
- Last Synced: 2023-03-05T23:04:28.920Z (over 3 years ago)
- Topics: date, datetime, dotnet, dotnet7, duration, time, timespan
- Language: C#
- Homepage:
- Size: 42 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://dev.azure.com/fluxera/Foundation/_build/latest?definitionId=82&branchName=main)
# Fluxera.Temporal
A libary that provides temporal types.
## Serialization Support
At the moment serialization support is available for:
- [MongoDB](https://github.com/mongodb/mongo-csharp-driver)
### MongoDB
To support the temporal serializers in MongoDB use the ```UseTemporal``` extension method on a ```ConventionPack```.
```C#
ConventionPack pack = new ConventionPack();
pack.UseTemporal();
ConventionRegistry.Register("ConventionPack", pack, t => true);
```