aronDisi

Results 5 issues of aronDisi

As of .NET 8 you can now register services using keys. ```c# services.AddKeyedSingleton("memory"); services.AddKeyedSingleton("queue"); ``` ```c# public class ExampleService { public ExampleService( [FromKeyedServices("queue")] IMessageWriter writer) { // Omitted for brevity......

### Duplicate ? - [X] I have searched issues/discussions and did not find other issues/discussions reporting this bug. ### Product version 1.6.0 and NetNamedPipe 1.5.0-preview1 ### Describe expected behavior Connection...

bug

I have a database (that was forced on me) that has a few tables with semi-structured data. In these tables some of the columns are stable and some are customer...

I would like to set the dialect per DbConnection. It seems fastcrud only allows the dialect to be set globally.

Can I get an UpdateOrInsert() (aka Upsert) method or a recommendation on the form?