SQL Query Builder
SqlQueryBuilder
is a .NET nuget package library for writing SQL statements
in fluent-style native C# syntax. Ideally, it would be used in conjunction
with an ORM like Dapper that takes strings for
a sql query.
The syntax looks like the following:
string query = new Select("*").From("MyTable").Where("Id = 14").ToString();
This project is not being actively worked on.