A C# DataTable has a PropertyCollection ExtendedProperties
. A DataColumn in that table also has an ExtendedProperties
Why would DataRow not have this?
So, for example, If I have multiple tables and want to add some metadata to be used in the view, I could do something like this:
tbl.ExtendedProperties["class"] = "pandas";
tbl.Columns["name"].ExtendedProperties["class"] = "highlighted";
How could I go another level further and do something like
tbl.Rows[0].ExtendedProperties["class"] = "highlighted";