Carbunql
Carbunql copied to clipboard
Carbunql provides query parsing and building functionality.
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...
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)...
candidate Joining tables when column names are different Row Number CTE Case Coalesce Concat Like In Exists SubQuery Group Order
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 =...
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...
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...