C# 使用 linq 反序列化 xml

C# deserialize xml using linq

我有以下 xml 文件

<?xml version="1.0" encoding="utf-8"?>
<Launchpad>
  <Shortcuts>
    <Shortcut Id="1">
      <Type>Folder</Type>
       <FullPath>C:\bla\bla\bla</FullPath>
       <Name>Proximity</Name>
    </Shortcut>
    <Shortcut Id="2">
      <Type>Folder</Type>
      <FullPath>C:\bla</FullPath>
      <Name>Visual Studio 2017</Name>
    </Shortcut>
  </Shortcuts>
</Launchpad>

我正在尝试反序列化为这样的对象:(首先尝试了查询语法,但也没有用)

XDocument xd = XDocument.Load(FullPath);

// query syntax
//var shortcuts = (from s in xd.Descendants("Shortcuts")
//                 select new Shortcut()
//                 {
//                   Id = Convert.ToInt32(s.Attribute("Id")),
//                   TypeOfLink = GetTypeFromString(s.Descendants("Type") 
//                                .First()
//                                .Value),
//                   FullPathToTarget = s.Descendants("FullPath") 
//                                         .First()
//                                         .Value,
//                   Name = s.Descendants("Name").First().Value,
//                 }).ToList();

// method syntax
List<Shortcut> shortcuts = xd.Descendants("Shortcuts")
                             .Select(s => 
               new Shortcut()
               {
                 //Id = Convert.ToInt32(s.Attribute("Id")),
                 TypeOfLink = GetTypeFromString(s.Descendants("Type") 
                                                 .First().Value),
                 FullPathToTarget = s.Descendants("FullPath")
                                                 .First().Value,
                 Name = s.Descendants("Name")
                         .First().Value,
               }).ToList();
return shortcuts;

出于某种原因,我在列表中只得到一个快捷方式对象。此外,由于某种原因,s.Attribute("Id") 为空。

如果有人有任何改进 linq 查询的建议或为什么属性不起作用,那将是一个很大的帮助

您必须阅读 .Descendants("Shortcut") 而不是 .Descendants("Shortcuts")。 像这样:

List<Shortcut> shortcuts = xd.Descendants("Shortcut").Select(s =>
                       new Shortcut()
                       {
                           Id = s.Attribute("Id").Value, 
                           TypeOfLink = s.Descendants("Type").First().Value,
                           FullPathToTarget = s.Descendants("FullPath").First().Value,
                           Name = s.Descendants("Name").First().Value,
                       }).ToList();

我通过选择 Shortcut 作为 Shortcuts 的后代获得完整列表。

此外,ID 是一个 XAttribute,因此您不能将其转换为 int。

您需要使用Value来获取属性值。

XDocument xd = XDocument.Load(ms);
XElement root = xd.Document.Root;
var list = root.Descendants("Shortcuts").Descendants("Shortcut").Select(x =>
    new Shortcut()
    {
        Id = Convert.ToInt32(x.Attribute("Id").Value),
        TypeOfLink = GetTypeFromString(x.Descendants("Type")
                                        .First().Value),
        FullPathToTarget = x.Descendants("FullPath")
                                        .First().Value,
        Name = x.Descendants("Name").First().Value
        }).ToList();