Guy Taggar
Guy Taggar
Add C# syntax highlighting. Add bullet sepators for supported API. ### Examples: Before: ``` var collection = _db.GetCollection(); var person = new SimplePerson() { Id = Guid.NewGuid(), FirstName = "John",...
The tests project didn't compile due to `IConfiguration` variable, injected to a service expecting `IOptions`.
This PR migrates the DB on API project startup without running the CLI migration command when running the application for the first time. This can be confirmed by the following:...
Calling `BuildServiceProvider()` creates the set of services which need to be injected (the DI container). As `builder.build()` also calls it internally, it leads to 2 of each singletons, and different...
According to https://github.com/advisories/GHSA-59j7-ghrg-fj52 , the JWT package at its current version is vulnerable. This PR replaces it with the latest minor version available.
I've noticed 2 main problems in LiteDB usages in this project. The first one is the (very) common usage of the `Table` property, which unlike `MongoRepository`'s implementation, this: ```C# //...