DapperQueryBuilder
DapperQueryBuilder copied to clipboard
Dapper Query Builder using String Interpolation and Fluent API
First of all, thanks a lot for maintaining this great library. We're using MariaDB with Dapper & DapperQueryBuilder and currently having some issues with array expansion. Dapper expands each element...
Hi there! Following DTO given: ```csharp public interface IFoo { } public sealed record FooA : IFoo { } public sealed record FooB : IFoo { } public sealed record...
Is there any way to name your SQL variables the same as the C# variable name instead of @p0, @p01? I have a script I'm building up and even though...
Not sure exactly how many goats were sacrificed in the building of this library, but just wow. Thanks so much for writing it. I learned about how a $"" is...
Currently its not possible to add a GroupBy with the FluentQueryBuilder unless there is a WHERE clause. This change allows chaining the GroupBy off the IFromBuilder.
Bumps [Npgsql](https://github.com/npgsql/npgsql) from 4.1.4 to 8.0.3. Release notes Sourced from Npgsql's releases. v8.0.3 This version contains a high-severity security patch for CVE-2024-32655 everyone is advised to upgrade. A large number...
I just found your package and I think it will make my code read a ton better. Right now, my code looks like the first code block. It works fine,...