forked from PhenX/PhenX.EntityFrameworkCore.BulkInsert
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnumerableDataReader.cs
More file actions
117 lines (77 loc) · 3.4 KB
/
EnumerableDataReader.cs
File metadata and controls
117 lines (77 loc) · 3.4 KB
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
using System.Data;
using PhenX.EntityFrameworkCore.BulkInsert.Abstractions;
using PhenX.EntityFrameworkCore.BulkInsert.Metadata;
using PhenX.EntityFrameworkCore.BulkInsert.Options;
namespace PhenX.EntityFrameworkCore.BulkInsert;
internal sealed class EnumerableDataReader<T>(
IEnumerable<T> rows,
IReadOnlyList<ColumnMetadata> columns,
BulkInsertOptions options) : IDataReader
{
private readonly IEnumerator<T> _enumerator = rows.GetEnumerator();
private readonly Dictionary<string, int> _ordinalMap =
columns
.Select((c, i) => (Column: c, Index: i))
.ToDictionary(
p => p.Column.PropertyName,
p => p.Index
);
public object GetValue(int i)
{
var current = _enumerator.Current;
if (current == null)
{
return DBNull.Value;
}
return columns[i].GetValue(current, options)!;
}
public int GetValues(object[] values)
{
var current = _enumerator.Current;
if (current == null)
{
return 0;
}
for (var i = 0; i < columns.Count; i++)
{
values[i] = columns[i].GetValue(current, options)!;
}
return columns.Count;
}
public bool Read() => _enumerator.MoveNext();
public Type GetFieldType(int i) => columns[i].ClrType;
public int GetOrdinal(string name) => _ordinalMap.GetValueOrDefault(name, -1);
public int FieldCount => columns.Count;
public int Depth => 0;
public int RecordsAffected => 0;
public bool IsClosed => false;
public void Close()
{
}
public void Dispose()
{
_enumerator.Dispose();
}
public DataTable GetSchemaTable() => throw new NotImplementedException();
public bool NextResult() => throw new NotImplementedException();
public bool IsDBNull(int i) => GetValue(i) is DBNull;
public object this[int i] => throw new NotImplementedException();
public object this[string name] => throw new NotImplementedException();
public string GetString(int i) => throw new NotImplementedException();
public bool GetBoolean(int i) => throw new NotImplementedException();
public byte GetByte(int i) => throw new NotImplementedException();
public long GetBytes(int i, long fieldOffset, byte[]? buffer, int bufferoffset, int length) => throw new NotImplementedException();
public char GetChar(int i) => throw new NotImplementedException();
public long GetChars(int i, long fieldoffset, char[]? buffer, int bufferoffset, int length) => throw new NotImplementedException();
public IDataReader GetData(int i) => throw new NotImplementedException();
public string GetDataTypeName(int i) => throw new NotImplementedException();
public DateTime GetDateTime(int i) => throw new NotImplementedException();
public decimal GetDecimal(int i) => throw new NotImplementedException();
public double GetDouble(int i) => throw new NotImplementedException();
public float GetFloat(int i) => throw new NotImplementedException();
public Guid GetGuid(int i) => throw new NotImplementedException();
public short GetInt16(int i) => throw new NotImplementedException();
public int GetInt32(int i) => throw new NotImplementedException();
public long GetInt64(int i) => throw new NotImplementedException();
public string GetName(int i) => throw new NotImplementedException();
}