Best method to use IDataReader as IEnumerable?

后端 未结 6 815
攒了一身酷
攒了一身酷 2021-02-06 13:16

I need to use Linq on any IDataReader implementations like this

var c = sqlDataReader.AsEnumerable().Count();

Example:

<
相关标签:
6条回答
  • 2021-02-06 13:42

    You can just load the DataReader into a DataTable and then Select():

    DataTable dt = new DataTable();
    dt.Load(dataReader);
    DataRow[] rows = dt.Select();        //DataRow[] Implements IEnumerable
    

    or

    IEnumerable<DataRow> rows = dt.AsEnumerable();
    
    0 讨论(0)
  • 2021-02-06 13:53

    You could create an extension method to do this (see caveats below):

    public static class DataReaderExtension
    {
        public static IEnumerable<Object[]> AsEnumerable(this System.Data.IDataReader source)
        {
            if (source == null)
                throw new ArgumentNullException("source");
    
            while (source.Read())
            {
                Object[] row = new Object[source.FieldCount];
                source.GetValues(row);
                yield return row;
            }
        }
    }
    

    Found here: http://www.thinqlinq.com/default/Consuming-a-DataReader-with-LINQ.aspx


    As pointed out by @LukeH, note that as IDataReader only supports reading once, forwards, you'll only be able to query the enumerable once. (To get round this you could call ToList/ToArray, then query that).

    Note that SqlDataReader already impliments IEnumerable so you won't need to do this in the example you've given.

    Also, be aware that it's probably better to do any filtering/aggrigating on the server (via LINQ to SQL for example)

    0 讨论(0)
  • 2021-02-06 13:54

    Try, this:

    public static class DataReaderExtension
    {
        public class EnumeratorWrapper<T>
        {
            private readonly Func<bool> moveNext;
            private readonly Func<T> current;
    
            public EnumeratorWrapper(Func<bool> moveNext, Func<T> current)
            {
                this.moveNext = moveNext;
                this.current = current;
            }
    
            public EnumeratorWrapper<T> GetEnumerator()
            {
                return this;
            }
    
            public bool MoveNext()
            {
                return moveNext();
            }
    
            public T Current
            {
                get { return current(); }
            }
        }
    
        private static IEnumerable<T> BuildEnumerable<T>(
                Func<bool> moveNext, Func<T> current)
        {
            var po = new EnumeratorWrapper<T>(moveNext, current);
            foreach (var s in po)
                yield return s;
        }
    
        public static IEnumerable<T> AsEnumerable<T>(this T source) where T : IDataReader
        {
            return BuildEnumerable(source.Read, () => source);
        }
    }
    
    0 讨论(0)
  • 2021-02-06 13:54

    You can use this:

    MyDataReader.Cast<IDataRecord>()
    

    But don't forget to have the linq statement execute before you close the DataReader.
    using ToList() for instance

    0 讨论(0)
  • 2021-02-06 13:54

    I've used the following but I like @Serge's suggestion better and it reminds be of what I believe I used to do but then forgot that IDataReader implements

    var reader = command.ExecuteReader();
    var records = Enumerable
        .Range(0, int.MaxValue)
        .TakeWhile(i => reader.Read())
        .Select(i => reader as IDataRecord);
    
    0 讨论(0)
  • 2021-02-06 13:56

    Here are my two cents :

    public static IEnumerable<T> Enumerate<T>(this T reader) where T: IDataReader 
    { 
       using(reader) 
          while(reader.Read()) 
             yield return reader; 
    } 
    
    public void Test()
    {
      var Res =
        from Dr in MyDataReader.Enumerate()
        select new {
          ID = (Guid)Dr["ID"],
          Description = Dr["Desc"] as string
        };
    }
    

    I felt the urge to post this, because it is very important to dispose a DataReader after use, and no answer mentioned it.

    That's why my implementation has a using statement around the while loop. In this way, I can do "one hand" queries whithout worrying about the DataReader disposal.

    0 讨论(0)
提交回复
热议问题