An open API service indexing awesome lists of open source software.

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.

Awesome Lists containing this project

README

          

[![Build Status](https://dev.azure.com/fluxera/Foundation/_apis/build/status/GitHub/fluxera.Fluxera.Temporal?branchName=main&stageName=BuildAndTest)](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);
```