Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laget-se/laget.fingerprint.stores.mongo
MongoDB store implementation for laget.Fingerprint...
https://github.com/laget-se/laget.fingerprint.stores.mongo
fingerprint mongo nuget
Last synced: about 1 month ago
JSON representation
MongoDB store implementation for laget.Fingerprint...
- Host: GitHub
- URL: https://github.com/laget-se/laget.fingerprint.stores.mongo
- Owner: laget-se
- License: apache-2.0
- Created: 2021-02-14T11:44:08.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-05-06T12:37:08.000Z (8 months ago)
- Last Synced: 2024-05-06T14:23:24.881Z (8 months ago)
- Topics: fingerprint, mongo, nuget
- Language: C#
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# laget.Fingerprint.Stores.Mongo
MongoDB store implementation for laget.Fingerprint...![Nuget](https://img.shields.io/nuget/v/laget.Fingerprint.Stores.Mongo)
![Nuget](https://img.shields.io/nuget/dt/laget.Fingerprint.Stores.Mongo)## Configuration
> This example is shown using Autofac since this is the go-to IoC for us.
```c#
public class FingerprintModule : Module
{
protected override void Load(ContainerBuilder builder)
{
builder.Register>(c =>
new FingerprintManager(new MongoStore(new MongoUrl(c.Resolve().GetConnectionString("MongoConnectionString"))))
).SingleInstance();
}
}
```