# Monday, August 27, 2007
« Tier Splitting C# Screencast | Main | Assertions via Linq Expressions »

I have so far managed to avoid needing to use any fancy ORM tools. However, this doesn't mean I like writing all the standard ADO.NET code by hand. Using C# 2.0 anonymous methods I am able to write code like the following. (I'm not sure all of this is truly original work; if you have already done this then sweet! I just want to share the ideas with everyone.)

Customer c = With.Database<Customer>(delegate(Database db)
{
    return db.ExecuteReader<Customer>(
        "select Id, FirstName, Surname from Customer where Id = @id", // The SQL to execute
        delegate(IDbCommand cmd) // This anonymous function is called before executing so we can add params.
        {
            db.AddParameter(cmd, "@id", DbType.Int32, id);
        },
        delegate(IDataReader reader) // The IDataReader returned from ExecuteReader is passed here.
        {
            if (reader.Read())
                return new Customer(
                    reader.GetInt32(0),
                    reader.GetString(1),
                    reader.GetString(2));
            else
                return null;
        });
});

My Database class manages the creation of a connection and optionally a transaction. It then exposes methods to invoke SQL commands (Reader, Scalar and NonQuery). A transaction can be automatically provided by calling With.DatabaseInTransaction( ... ) instead. This then wraps the inputted action in a try-catch-finally block, commit and rolling back in the usual places.

("With" is a static class that provides convenient access to the Database object)

public static T DatabaseInTransaction<T>(Function<Database, T> function)
{
    using (Database db = new Database())
    {
        db.BeginTransaction();
        try
        {
            T result = function(db);
            db.CommitTransaction();
            return result;
        }
        catch
        {
            db.RollbackTransaction();
            throw;
        }
    }
}

There are generic and non-generic versions of the functions, depending on if we want to return a value.

For example, here is the non-generic ExecuteReader method from Database:

public void ExecuteReader(string sql, Action<IDbCommand> addParameters, Action<IDataReader> action)
{
    Debug.Assert(sql != null, "sql cannot be null.");
    Debug.Assert(action != null, "action cannot be null.");

    using (IDbCommand cmd = CreateCommand(sql))
    {
        if (addParameters != null)
        {
            addParameters(cmd);
        }
        using (IDataReader reader = cmd.ExecuteReader())
        {
            action(reader);
        }
    }
}

The IDbCommand is created using the following method. Notice that we also handle assigning the transaction if we're in one.

IDbCommand CreateCommand(string sql)
{
    Debug.Assert(_connection != null && _connection.State == ConnectionState.Open);

    IDbCommand cmd = _connection.CreateCommand();
    cmd.CommandText = sql;
    cmd.CommandType = CommandType.Text;
    if (_transaction != null)
    {
        cmd.Transaction = _transaction;
    }
    return cmd;
}

The Database class implements IDisposable, thus allowing the "using" syntax in the With class methods. In Dispose() I close the connection, if the transaction is still open I rollback first.

I anyone wants the full Database and With classes drop me a line. I'm looking forward to C# 3.0 since the improved type inference and lambda syntax will slim down the amount of keyboard time even more!

Monday, August 27, 2007 10:41:09 AM (GMT Daylight Time, UTC+01:00)  #    Disclaimer  |  Comments [1]  |  Related posts:
Announcing ProntoCMS
Name needed for new open source CMS
Should I open source my new CMS?
Hasic – A kick-ass view engine for asp.net mvc
HTML Forms using VB XML Literals
Automatic HTML Forms
Tracked by:
http://morningside.edu/mics/_notes/pages/nexium/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/ultram/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/soma/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celexa/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/tramadol/index.html [Pingback]
http://blastpr.com/wiki/js/pages/viagra/index.html [Pingback]
http://blastpr.com/wiki/js/pages/celexa/index.html [Pingback]
http://blastpr.com/wiki/js/pages/coumadin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/coumadin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prilosec/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/melatonin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/prozac/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/claritin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/ultram/index.html [Pingback]
http://blastpr.com/wiki/js/pages/clomid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/cialis/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/synthroid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/rainbow-brite/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/viagra/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/wellbutrin/index.html [Pingback]
http://blastpr.com/wiki/js/pages/lexapro/index.html [Pingback]
http://blastpr.com/wiki/js/pages/lipitor/index.html [Pingback]
http://blastpr.com/wiki/js/pages/tramadol/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/lexapro/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/paxil/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/celebrex/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/clomid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/zoloft/index.html [Pingback]
http://blastpr.com/wiki/js/pages/effexor/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/hoodia/index.html [Pingback]
http://blastpr.com/wiki/js/pages/paxil/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cymbalta/index.html [Pingback]
http://blastpr.com/wiki/js/pages/claritin/index.html [Pingback]
http://morningside.edu/mics/_notes/pages/cialis/index.html [Pingback]
http://blastpr.com/wiki/js/pages/synthroid/index.html [Pingback]
http://blastpr.com/wiki/js/pages/melatonin/index.html [Pingback]
http://witze-humor.de/templates/images/docs/69259068/index.html [Pingback]
http://swellhead.netswellhead.net/docs/42306518/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/18769945/index.html [Pingback]
http://lecouac.org/ecrire/lang/docs/25282359/index.html [Pingback]
http://discussgod.com/cpstyles/docs/90092602/index.html [Pingback]
http://swellhead.netswellhead.net/docs/05235252/index.html [Pingback]
http://pddownloads.com/docs/94929363/index.html [Pingback]
http://swellhead.netswellhead.net/docs/84545083/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/91708760/index.html [Pingback]
http://legambitdufou.org/Library/docs/38152786/index.html [Pingback]
http://entartistes.ca/images/images/docs/65934120/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/36483653/index.html [Pingback]
http://thebix.com/includes/compat/docs/44694113/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/37348396/index.html [Pingback]
http://discussgod.com/cpstyles/docs/25383456/index.html [Pingback]
http://coolioness.com/attachments/docs/60340594/index.html [Pingback]
http://plantmol.com/docs/99021843/index.html [Pingback]
http://thebix.com/includes/compat/docs/29852280/index.html [Pingback]
http://martinrozon.com/images/photos/docs/61904307/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/48335156/index.html [Pingback]
http://split-dalmatia.com/split-dalmatia.com/images/docs/73811526/index.html [Pingback]
http://thejohnslater.com/pix/img/docs/42082955/index.html [Pingback]
http://pddownloads.com/docs/15972574/index.html [Pingback]
http://lecouac.org/ecrire/lang/docs/77066936/index.html [Pingback]
http://legambitdufou.org/Library/docs/04618667/index.html [Pingback]
http://temerav.com/images/menu/20420171/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/63224938/index.html [Pingback]
http://promocija.com.hr/promocija.com.hr/includes/js/docs/70471394/index.html [Pingback]
http://temerav.com/images/menu/91084644/index.html [Pingback]
http://plantmol.com/docs/60217277/index.html [Pingback]
http://pddownloads.com/docs/21991908/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/44378735/index.html [Pingback]
http://discussgod.com/cpstyles/docs/62161481/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/68291686/index.ht... [Pingback]
http://coolioness.com/attachments/docs/75395149/index.html [Pingback]
http://thebix.com/includes/compat/docs/10152421/index.html [Pingback]
http://hrvatska.biz/wp-includes/js/docs/80692203/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/06712704/index.ht... [Pingback]
http://thejohnslater.com/pix/img/docs/56008043/index.html [Pingback]
http://islands-croatia.comislands-croatia.com/includes/js/docs/60974094/index.ht... [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/08493171/index.html [Pingback]
http://vladan.strigo.net/wp-includes/js/docs/04726190/index.html [Pingback]
http://plantmol.com/docs/80639343/index.html [Pingback]
http://jivest2006.com/docs/76826750/index.html [Pingback]
http://blog.netmedia.hr/wp-includes/js/docs/84238305/index.html [Pingback]
http://thebix.com/includes/compat/docs/15132509/index.html [Pingback]
http://pspdesktops.com/fileupload/store/docs/04061117/index.html [Pingback]
http://easytravelcanada.info/js/pages/7/nexium/ [Pingback]
http://easytravelcanada.info/js/pages/2/celexa/ [Pingback]
http://easytravelcanada.info/js/pages/5/effexor/ [Pingback]
http://jemnemelodierecords.sk/img/viagra/ [Pingback]
http://inatelevizia.sk/ad/img/cialis/ [Pingback]
http://sevainc.com/bad_denise/img/9/prozac/ [Pingback]
http://sevainc.com/bad_denise/img/12/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/2/cialis/ [Pingback]
http://sevainc.com/bad_denise/img/5/hoodia/ [Pingback]
http://sevainc.com/bad_denise/img/11/tramadol/ [Pingback]
abaffy.org/la/img/cialis/ [Pingback]
http://sevainc.com/bad_denise/img/1/celebrex/ [Pingback]
http://sevainc.com/bad_denise/img/2/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/10/soma/ [Pingback]
http://adventure-traveling.com/images/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/8/prilosec/ [Pingback]
http://easytravelcanada.info/js/pages/12/wellbutrin/ [Pingback]
http://adventure-traveling.com/images/img/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/3/clomid/ [Pingback]
http://ina-tv.sk/img/cialis/ [Pingback]
http://easytravelcanada.info/js/pages/11/tramadol/ [Pingback]
http://sevainc.com/bad_denise/img/10/soma/ [Pingback]
http://sevainc.com/bad_denise/img/12/wellbutrin/ [Pingback]
http://abaffydesign.com/la/img/viagra/ [Pingback]
http://easytravelcanada.info/js/pages/6/lexapro/ [Pingback]
http://easytravelcanada.info/js/pages/9/prozac/ [Pingback]
http://sevainc.com/bad_denise/img/12/zoloft/ [Pingback]
http://sevainc.com/bad_denise/img/3/clomid/ [Pingback]
http://easycanada.info/js/pages/viagra/ [Pingback]
http://birds.sk/img/cialis/ [Pingback]
http://sevainc.com/bad_denise/img/1/accutane/ [Pingback]
http://sevainc.com/bad_denise/img/7/melatonin/ [Pingback]
http://sevainc.com/bad_denise/img/6/lexapro/ [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/free-sex-positions-clips.h... [Pingback]
http://odin.net/images/pages/35694472/stories-housewives-seducing-husbands-frien... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/xxx-asian-anal-milf-free.h... [Pingback]
http://odin.net/images/pages/52807681/daily-girl-sex-videos.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/virgin-vagina-pic.html [Pingback]
http://odin.net/images/pages/52807681/bollywood-actress-in-bikini-bra.html [Pingback]
http://odin.net/images/pages/35694472/babe-like-swim-video.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/erotic-comic-archives.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/sex-toys-oregon.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/free-mature-bbw-porn.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/anime-preteen-sex.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/sexual-protective-strategie... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/pics-of-sexy-women-in-west... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/gay-baseball-player.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/lisa-rowe-girl-interrupted.... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/ghanaian-girls.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/straight-guys-fuck-gays-for... [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/free-pictures-of-amateur-po... [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/teen-young-bbw.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/caught-masturbating.html [Pingback]
http://odin.net/images/pages/35694472/council-of-adult-education-australia.html [Pingback]
http://odin.net/images/pages/35694472/gay-justin-berfield.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/debra-wilson-nude-pics.html [Pingback]
http://odin.net/images/pages/35694472/hot-mom-pics.html [Pingback]
http://odin.net/images/pages/52807681/drug-test-shop-penis.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/adult-swim-crest.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/taylor-hayes-free-pics.htm... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/baby-shower-graphics.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/asian-couples.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/32162341/sparkle-sweater-girls.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/nude-fortysomethings.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/asian-climate.html [Pingback]
http://odin.net/images/pages/52807681/hot-girls-squeeze-boobs.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/pictures-of-black-girls.ht... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/mature-fucking-movies.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/what-is-the-mature-ripened... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/lindsay-lohan-nude-picture... [Pingback]
http://odin.net/images/pages/35694472/free-amauter-porn.html [Pingback]
http://odin.net/images/pages/35694472/index.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/xxx-pictures-of-celebritys... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/st-pauli-girl-distribution... [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/fucking-stories-for-women.... [Pingback]
http://odin.net/images/pages/52807681/webcams-for-couples.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/camping-naturisten-free-pi... [Pingback]
http://odin.net/images/pages/35694472/study-on-penis-size.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/pussy-licking-techniques.ht... [Pingback]
http://odin.net/images/pages/52807681/lulla-smith-moses-baby-ensemble.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/gay-male-escorts-toronto.ht... [Pingback]
http://odin.net/images/pages/35694472/celeb-up-skirts.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/aunt-judy-porn-site.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/sexual-world-records.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/35807953/ravon-nude.html [Pingback]
http://cidesi.com/images/metro/metro2/pages/99493954/fuck-bitches-get-money-lyri... [Pingback]
http://odin.net/images/pages/35694472/jenny-maccarthy-nude.html [Pingback]
http://odin.net/images/pages/52807681/aurora-snow-xxx.html [Pingback]
http://gatewayplayhouse.com/photos/cai/pages/53348735/agent-scully-alien-fuck.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-vicodin-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-valium-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-soma-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-tramadol-online.html [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-phentermine-online.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-hydrocodone-online.ht... [Pingback]
http://www.signalprocessingsociety.org/community/forum/buy-ambien-online.html [Pingback]