I have following code for creating a list of objects from source XML
. I can get the requires result in var query
variable. What is the best way to create a List<Video>
from this result?
Note: Prefer Method Chaining
approach if possible.
CODE
class Program
{
static void Main(string[] args)
{
string xmlStringInput = @"<videoShop>
<video title=""video1"" path=""videos\video1.wma""><Director>Speilberg</Director></video>
<video title=""video2"" path=""videos\video2.wma""/>
</videoShop>";
XDocument myDoc = XDocument.Parse(xmlStringInput);
var videoElements = (from video in myDoc.Descendants("video") select video).ToList();
foreach (var videoEle in videoElements)
{
//System.Xml.XPath namespace for XPathSelectElement
var directorName = videoEle.XPathSelectElement(@"Director");
}
var query = from video in myDoc.Descendants("video")
select new
{
MyTitle = video.Attribute("title").Value,
MyPath = video.Attribute("path").Value
};
//IEnumerable<XElement> elements = (IEnumerable<XElement>)query;
//List<Video> videoLibrary = (List<Video>)query.ToList<Video>();
Console.WriteLine(query);
Console.ReadLine();
}
}
Entity
public class Video
{
public string MyTitle { get; set; }
public string MyPath { get; set; }
}
REFERENCE:
- What's the most efficient way to locate and set element values in an XDocument?
- How do I get a list of child elements from XDocument object?
- Creating objects from XML
- C# LINQ with XML, cannot extract multiple fields with same name into object
- How to get XElement's value and not value of all child-nodes?