Carbunql icon indicating copy to clipboard operation
Carbunql copied to clipboard

Carbunql provides query parsing and building functionality.

Results 22 Carbunql issues
Sort by recently updated
recently updated
newest added

There is already a SQL builder called LINQ, but I don't like its syntax. I would like to write a syntax that is more similar to C# and SQL, and...

experiment

image ```cs var a = Sql.Table(); // Define table A var b = Sql.Table(); // Define table B var c = Sql.Table(); // Define table C var query = Sql.From(a)...

experiment

candidate Joining tables when column names are different Row Number CTE Case Coalesce Concat Like In Exists SubQuery Group Order

documentation

As you know, this is to improve performance ```cs [SelectQuery( @" select a.column_1 as col1, a.column_2 as col2 from table_a as a left join table_b as b on a.id =...

enhancement

There is a rule in the Join clause that ``the argument name of the Predicate expression and the argument name of the return value must be the same,'' and if...

enhancement

SelectAll (*) has a problem that it is difficult to get the column name in subsequent processing, but SelectAll is easy to write. I want to solve this problem by...