使用 LINQ 填充 List
我是 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' 的快捷方式,即映射
Personto
Instance` 标记。
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 map
Personto
Instance` tag.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我希望您知道您需要将字段(或更好地使其属性)设置为公共字段才能填充对象值。您的类字段中缺少 public 修饰符。
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.
同意@Hasan Khan的答案,但您还需要在您的人员类中公开您的字段,以便您可以实例化它们。您可以使用自动属性,如下所示:
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:
这里有关于如何使用 Linq To XML 的教程
Here you have a tutorial on how to use Linq To XML