Alex Klaus
Alex Klaus
[LocalDateTimeHandler.Parse()](https://github.com/mj1856/Dapper-NodaTime/blob/20473fecbfaf17e3730ecb632ac2970345f537bb/src/Dapper.NodaTime/LocalDateTimeHandler.cs#L32) method handles `DateTime` type only. But what if the result set has a date in a string formatted like `YYYY-M-D` / `YYYY-MM-DD` ? Was it deliberately left out-of-the-scope? (e.g....
How to return a collection of a strongly-typed class with a nested class, like below? ```C# sess.Query().Select(user => new UserViewDto { Id = user.Id, Contact = new ContactReference { Id...
Just an idea. I leave it here for you to decide if it's any good. **Idea** Add a way to form a [patch request](https://ravendb.net/docs/article-page/latest/csharp/client-api/operations/patching/set-based) (that gets passed to `PatchByQueryOperation`) partially...
Upgrade front-end to Angular v14 to address all the warnings coming from Dependabot. The key features (see [what's new](https://blog.angular.io/angular-v14-is-now-available-391a6db736af)): - [standalone components](https://angular.io/guide/standalone-components) (abandoning NGModules) - [strongly-typed forms](https://angular.io/guide/typed-forms) - [streamlined page...
**Idea** The current instance of [yabt.ravendb.net](https://yabt.ravendb.net/) is running on a free AWS instance. It's snappy and it's free, so it would be great if could showcase it. **Task [back-end]** Have...
Need to find a good-looking easy-to-maintain rich test editor for using in Backlog items and replace the standard `textarea` we use at the moment. There are several candidates: - [Tiny](https://www.tiny.cloud/)....
If I want to store feature vectors (a numeric array, e.g. `[2.01, 20.85, 14.05]`) in the DB, I'd like to query other records (with arrays of the same dimension) similar...
In some cases, an exception on failed execution is the desired outcome. To help out here, we can add a bunch of extension methods (like `ThrowIfNotSuccess(this IDomainResult result)`), like shown...
Following up #45 and #63 issues, the devs might want to return a value in the [Retry-After header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Retry-After). As per the specs on [413](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/413) and [503](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/503) HTTP codes: > This...
[ProblemDetailsService](https://github.com/dotnet/aspnetcore/blob/main/src/Http/Http.Extensions/src/ProblemDetailsService.cs) and [ProblemDetailsServiceCollectionExtensions](https://github.com/dotnet/aspnetcore/blob/main/src/Http/Http.Extensions/src/ProblemDetailsServiceCollectionExtensions.cs) have been added in .NET. Questions: - Do they affect the existing behaviour of `DomainResult.MVC`? - Can `DomainResult.MVC` be improved by bringing them in?