Posts Tagged as ‘dbextensions’

February 18, 2009

SqlBuilder 2.0 – Tutorial

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 [...]

January 3, 2008

Writing SQL using lambda expressions (not Linq)

Some of the code in this post may be outdated, I suggest visiting the project site at http://dbex.googlecode.com/
Persistence ignorance and type safety, this is what Linq gives us. I can’t get enough of the latter, but in most cases a generic query API is not what I need, specially when I’m not querying in-memory objects.
You [...]