使用 LINQ 填充 List来自 XML

发布于 2024-12-11 09:55:24 字数 959 浏览 0 评论 0原文

我是 LINQ 新手。我需要使用 xml 中的信息填充以下类的 List

class Person
{
    int id;
    string name;
    string address;
}

List<Person> people = new List<Person>();

在 LINQ 中执行此操作的正确方法是什么?

 <Company>
  ...
  ...<!--Lot of items -->
  ...
  <People>      <!--People appears only once -->
        <Instance>
            <ID>1</ID>
            <Name>NameA</Name>
            <Address>AddressA</Address>         
        </Instance>
        <Instance>
            <ID>2</ID>
            <Name>NameB</Name>
            <Address>AddressB</Address>         
        </Instance>
        ..
        ..
 </People>
</Company>

我需要知道 LINQ 表达式的结构才能直接到达 标记。另外,是否有任何填充 List' 的快捷方式,即映射PersontoInstance` 标记。

I am new to LINQ. I need to fill a List of the following class with information from xml.

class Person
{
    int id;
    string name;
    string address;
}

List<Person> people = new List<Person>();

What is the correct way to do it in LINQ.

 <Company>
  ...
  ...<!--Lot of items -->
  ...
  <People>      <!--People appears only once -->
        <Instance>
            <ID>1</ID>
            <Name>NameA</Name>
            <Address>AddressA</Address>         
        </Instance>
        <Instance>
            <ID>2</ID>
            <Name>NameB</Name>
            <Address>AddressB</Address>         
        </Instance>
        ..
        ..
 </People>
</Company>

I need to know the structure of LINQ expression to directly reach <People> tag. Also, is there any shortcuts for filling the List', i.e mapPersontoInstance` tag.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

你的背包 2024-12-18 09:55:24

我希望您知道您需要将字段(或更好地使其属性)设置为公共字段才能填充对象值。您的类字段中缺少 public 修饰符。

var doc = XDocument.Parse(xmlString);
List<People> people = doc.Descendants("People")
                      .FirstOrDefault()
                      .Descendants("Instance")
                      .Select(p=> new Person()
                                  {
                                      ID = p.Element("ID").Value, 
                                      Name = p.Element("Name").Value, 
                                      Address=p.Element("Address").Value
                                   }).ToList();

I hope you know that you need to make your fields (or better make them properties) as public to able to fill the object values. You're missing public modifier in your class fields.

var doc = XDocument.Parse(xmlString);
List<People> people = doc.Descendants("People")
                      .FirstOrDefault()
                      .Descendants("Instance")
                      .Select(p=> new Person()
                                  {
                                      ID = p.Element("ID").Value, 
                                      Name = p.Element("Name").Value, 
                                      Address=p.Element("Address").Value
                                   }).ToList();
棒棒糖 2024-12-18 09:55:24

同意@Hasan Khan的答案,但您还需要在您的人员类中公开您的字段,以便您可以实例化它们。您可以使用自动属性,如下所示:

    class Person
    {
        public int Id { get; set; }
        public string Address { get; set; }
        public string Name { get; set; }
    }

Agree with @Hasan Khan's answer but you will also need to make your fields public in your person class so you can instantiate them. You can use auto-properties so something like this:

    class Person
    {
        public int Id { get; set; }
        public string Address { get; set; }
        public string Name { get; set; }
    }
傾旎 2024-12-18 09:55:24

这里有关于如何使用 Linq To XML 的教程

Here you have a tutorial on how to use Linq To XML

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文