linq - System.Xml.Linq.XElement >' does not contain a definition for ' First' 并且没有扩展方法 'First' 接受第一个参数

标签 linq

关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。












想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。

8年前关闭。




Improve this question




我正在尝试使用此博客更改一些自定义消息编码器

http://www.falconwebtech.com/post/2010/05/24/WCF-Interoperability-and-Extensibility-Part-Two.aspx

这里作者使用了一个扩展方法
 xmlMessage.Descendants(sec + "Security").First().Add(samlXml);

我为此使用什么命名空间。首先
这是我得到的错误

“System.Collections.Generic.IEnumerable”不包含“First”的定义,也没有接受第一个参数的扩展方法“First”
输入“System.Collections.Generic.IEnumerable”
可以找到(您是否缺少 using 指令或程序集引用?)

我包含以下命名空间
using System;
using System.IO;
using System.Security.Cryptography;
using System.ServiceModel.Channels;
using System.Text;
using System.Xml;
using System.Xml.Linq;
using System.Reflection;
using System.Collections.Generic;
using System.Xml.XPath;
using System.Security.Cryptography.Xml;
using System.Security.Cryptography.X509Certificates;
using Microsoft.Web.Services3.Security;
using System.ServiceModel.Security;
using System.IdentityModel.Tokens;

我本可以完成我的研究,但我正在采取简单的方法

谢谢

最佳答案

关于linq - System.Xml.Linq.XElement >' does not contain a definition for ' First' 并且没有扩展方法 'First' 接受第一个参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17385774/

相关文章:

c# - Entity Framework 查询最大

c# - 使用 LINQ 自动生成类型的 Dapper 参数化查询

c# - Linq 加入并排序

C# - 按照另一个列表中项目的顺序高效地从一个列表中提取项目

c# - 使用linq查找第二个最高薪水

c# - 如何只搜索 XDocument 的子项,而不是其所有后代?

c# - 具有可为空总和的 Linq 查询

c# - 如何在 Linq 中使用 Long 类型作为 Skip

c# - Entity Framework 查询中的用户 trimstart

LINQ,我可以使用方法语法编写更清晰的联接吗?