ForXmlHelper.ToRows<TRow> method
namespace: Serenity.Data assembly: Serenity.Net.Web
Converts data returned from FOR XML statement to a row type
public static List<TRow> ToRows<TRow>(string forXml, Action<XElement, TRow> readRow)
where TRow : class, IRow, new()
| parameter | description |
|---|---|
| TRow | Target row type |
| forXml | Returned FOR XML data |
| readRow | Action to read a row |
See Also
- class TRow
- interface IRow
- class ForXmlHelper