Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 LINQ to XML 中使用 LIKE 运算符?我确实尝试过谷歌搜索,但结果是 Linq to SQL 中的 Like 运算符而不是 XML。如果是,请推荐一些参考。提前非常感谢。
LINQ to XML 只是 LINQ to Objects。LINQ to Objects 意味着您可以在集合上运行 .NET 代码,并且可以使用 .NET 代码进行过滤。在 .NET 中,我们可以使用String.Contains,String.StartsWith和String.EndsWith来检查一个字符串是否是另一个字符串的一部分。
String.Contains
String.StartsWith
String.EndsWith