如何使用 Linq to SQL 使用搜索条件搜索一组节点?
我有这个 XML
<?xml version="1.0" encoding="utf-8"?>
<Customers>
<Customer Id="1">
<Name>rtertr</Name>
<DOB>2010-12-12T00:00:00</DOB>
<EMail>[email protected]</EMail>
</Customer>
<Customer Id="2">
<Name>west</Name>
<DOB>0001-01-01T00:00:00</DOB>
<EMail>[email protected]</EMail>
</Customer>
<Customer Id="3">
<Name>west</Name>
<DOB>0001-01-01T00:00:00</DOB>
<EMail>[email protected]</EMail>
</Customer>
</Customers>
如何获取名称为 west (
) 的所有节点并将其存储在集合中?在我们的例子中,它应该返回 2 个节点(有两个节点的名称为 west。这必须使用 Linq to SQL 来实现。
I have this XML
<?xml version="1.0" encoding="utf-8"?>
<Customers>
<Customer Id="1">
<Name>rtertr</Name>
<DOB>2010-12-12T00:00:00</DOB>
<EMail>[email protected]</EMail>
</Customer>
<Customer Id="2">
<Name>west</Name>
<DOB>0001-01-01T00:00:00</DOB>
<EMail>[email protected]</EMail>
</Customer>
<Customer Id="3">
<Name>west</Name>
<DOB>0001-01-01T00:00:00</DOB>
<EMail>[email protected]</EMail>
</Customer>
</Customers>
How to fetch all the nodes which have the name as west (<Name>west</Name>
) and store it in a collection? In our case it should return 2 nodes (there are two nodes which have Name as west. This has to be achieved using Linq to SQL.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
或者
or
除非您首先转换数据并将其存储在 SQL 数据库中,否则无法使用 LINQ to SQL 访问 XML。它被称为 LINQ to SQL 是有原因的。也许您指的是 LINQ to XML,所以我会这样假设。
假设您有一个包含 XML 的
XDocument
:It is not possible to use LINQ to SQL to access XML, unless you first convert the data and store it in an SQL database. It is called LINQ to SQL for a reason. Maybe you mean LINQ to XML so I will assume that.
Assuming you have an
XDocument
containing the XML:使用
ToList()
扩展方法。With
ToList()
extension method.