Method FromDictionaries
FromDictionaries(IEnumerable<IDictionary<string, object?>>)
Opens a reader over dictionary rows.
public static IMergeDataReader FromDictionaries(IEnumerable<IDictionary<string, object?>> rows)
Parameters
rowsIEnumerable<IDictionary<string, object>>The rows. Enumerated once, lazily.
Returns
- IMergeDataReader
The reader, positioned before the first record.
Remarks
A value that is itself a sequence of dictionaries becomes a child collection, so a
nested «TableStart:Items» region works without any extra registration.
Exceptions
- ArgumentNullException
rowsis null.