Skip to content

Instantly share code, notes, and snippets.

View cdemi's full-sized avatar

Christopher Demicoli cdemi

View GitHub Profile
@cdemi
cdemi / EnumerableDataReader.cs
Created November 22, 2014 00:07
Converts IEnumerable<T> to IDataReader
using System;
using System.Collections.Generic;
using System.Linq.Expressions;
using System.Reflection;
namespace System.Data
{
/// <summary>
/// IDataReader that can be used for "reading" an IEnumerable<T> collection
/// </summary>