Click here to Skip to main content
15,879,613 members
Articles / Web Development / ASP.NET

Dynamic... But Fast: The Tale of Three Monkeys, A Wolf and the DynamicMethod and ILGenerator Classes

Rate me:
Please Sign up or sign in to vote.
4.94/5 (272 votes)
12 Jun 2012BSD6 min read 1M   1.2K   384  
How to use the DynamicMethod and ILGenerator classes to create dynamic code at runtime that outperforms Reflection.
using System;
using System.Data.SqlClient;
using System.Reflection;

namespace DynamicMappingSpike
{
    public class ReflectionBuilder<T>
    {
        private PropertyInfo[] properties;

        private ReflectionBuilder() { }

        public T Build(SqlDataReader reader)
        {
            T result = (T)Activator.CreateInstance(typeof(T));

            for (int i = 0; i < reader.FieldCount; i++)
            {
                if (properties[i] != null && !reader.IsDBNull(i))
                {
                    properties[i].SetValue(result, reader[i], null);
                }
            }

            return result;
        }

        public static ReflectionBuilder<T> CreateBuilder(SqlDataReader reader)
        {
            ReflectionBuilder<T> result = new ReflectionBuilder<T>();

            result.properties = new PropertyInfo[reader.FieldCount];
            for (int i = 0; i < reader.FieldCount; i++)
            {
                result.properties[i] = typeof(T).GetProperty(reader.GetName(i));
            }

            return result;
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The BSD License


Written By
Software Developer (Senior) Scratch Audio
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions