querybuilder
querybuilder copied to clipboard
SQL query builder, written in c#, helps you build complex queries easily, supports SqlServer, MySql, PostgreSql, Oracle, Sqlite and Firebird
I am returning a Query back from a function that logs some compiled raw SQL. then I return the original query back out. My function return type is Query and...
Say I do something silly like ```C# var isAdmin = ... .SelectRaw("SUM(CASE WHEN [Books].[Preprints] > 2 THEN 1 ELSE 0 END)", 1) .Where("User.IsAdmin", isAdmin) ... ``` It would be nice...
I am trying to use a custom type handler for a collection type. The problem is that `SqlKata.Helper.Flatten(IEnumerable array)` is decomposing my collection type into its parts. Thereby it creates...
Hello! I've encountered a bug (at least, what I interpret to be one) in the [`Query.Join` method](https://github.com/sqlkata/querybuilder/blob/d20e930c8a4bd801225f96302917432fa4b3b3ea/QueryBuilder/Query.Join.cs#L29): ``` public partial class Query { // ... public Query Join(string table, Func...