Creates new Row, with chosen template indices and field names, without data.
Use this constructor when mapping is known, and data will be set afterwards, e. g. from the data reader.
[Visual Basic]
' this is how to create the row from data reader
Dim map As New Mapping(reader)
Dim r As New Row(0, 1, map)
r.SetData(reader)
[C#]
// this is how to create the row from data reader
Mapping map = new Mapping(reader);
Row row = new Row(0, 1, map);
row.SetData(reader);
Row Class | Resco.Controls.AdvancedList Namespace | Row Constructor Overload List