DataViewRow and subtables

  • Thread starter Thread starter objwiz
  • Start date Start date
O

objwiz

I'm new to some of this so please pardon me if this is easy question.

I have some xml like this:
<logentry>
<id>f26915a6-33ec-475e-bb98-58224f16a0e1</id>
<logtitle>booze</logtitle>
<logtime>2006-01-14T18:08:58.0000000-05:00</logtime>
<logtimeGMT>127817357386406250</logtimeGMT>
<logtext>booze</logtext>
<comments>
<comment>
<comment_id>123</comment_id>
<comment_title>right</comment_title>
<comment_auth>sugarmomma</comment_auth>
<comment_time>2006-01-14T18:32:50</comment_time>
<comment_timeGMT>127817357386406250</comment_timeGMT>
<comment_text>right you are a dork of big
magnitudes</comment_text>
</comment>
</comments>
</logentry>


In ASP.NET, I get a DataRowView object for logentry. How do I
navigate to the "comments"? Is there a subtable in the DataRowView?
 
Back
Top