Overview
SqlBuilder is a class designed to make dynamic SQL tasks easier. The top design goals are:
The query should look like SQL, and all SQL queries should be possible.
SqlBuilder is about building SQL, not getting or mapping data, so it should not be bound to any particular data access implementation.
Let’s take a look at the first [...]