FrameViewToDictionaries Method |
Writes the data in the view as a sequence of dictionaries.
Namespace:
Meta.Numerics.Data
Assembly:
Meta.Numerics (in Meta.Numerics.dll) Version: 4.1.4
Syntax public IEnumerable<Dictionary<string, Object>> ToDictionaries()
Public Function ToDictionaries As IEnumerable(Of Dictionary(Of String, Object))
public:
IEnumerable<Dictionary<String^, Object^>^>^ ToDictionaries()
member ToDictionaries : unit -> IEnumerable<Dictionary<string, Object>>
Return Value
Type:
IEnumerableDictionaryString,
ObjectAn enumerable sequence of dictionaries, one for each row.
Remarks Each row produces one dictionary, whose keys are the column names and whose values
are the corresponding column values in that row.
This method can be used to produce a JSON serialized form of the data.
See Also