Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
65 lines (55 loc) · 2.01 KB

File metadata and controls

65 lines (55 loc) · 2.01 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
using System.Collections.Generic;
using System.Linq;
using System.Data;
using Simple.Data.Extensions;
namespace Simple.Data.Ado
{
using System;
public static class DataReaderExtensions
{
public static IDictionary<string,object> ToDictionary(this IDataReader dataReader)
{
return dataReader.ToDictionary(dataReader.CreateDictionaryIndex());
}
public static IEnumerable<IDictionary<string, object>> ToDictionaries(this IDataReader reader)
{
using (reader)
{
return ToDictionariesImpl(reader).ToArray().AsEnumerable();
}
}
public static IEnumerable<IEnumerable<IDictionary<string, object>>> ToMultipleDictionaries(this IDataReader reader)
{
using (reader)
{
return ToMultipleDictionariesImpl(reader).ToArray().AsEnumerable();
}
}
private static IEnumerable<IEnumerable<IDictionary<string,object>>> ToMultipleDictionariesImpl(IDataReader reader)
{
do
{
yield return ToDictionariesImpl(reader).ToArray().AsEnumerable();
} while (reader.NextResult());
}
private static IEnumerable<IDictionary<string,object>> ToDictionariesImpl(IDataReader reader)
{
var index = reader.CreateDictionaryIndex();
var values = new object[reader.FieldCount];
while (reader.Read())
{
reader.GetValues(values);
ReplaceDbNullsWithClrNulls(values);
yield return OptimizedDictionary.Create(index, values);
}
}
private static void ReplaceDbNullsWithClrNulls(object[] values)
{
int dbNullIndex;
while ((dbNullIndex = Array.IndexOf(values, DBNull.Value)) > -1)
{
values[dbNullIndex] = null;
}
}
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.