对 XAttribute 值进行显式转换

发布于 2024-08-16 02:18:48 字数 625 浏览 2 评论 0原文

我最近写了一段代码,看起来有点像这样:

IEnumerable<DTO.Employee> xEmployee =
    from e in xDoc.Descendants("Employee")
    where int.Parse(e.Attribute("Id").Value) == emp.Id
    select new DTO.Employee
    {
        Id = (int)e.Attribute("Id"),
        LastName = (string)e.Element("LastName"),
        FirstName = (string)e.Element("FirstName"),
        Email = (string)e.Element("Email")
    };

但是,我对 where 子句中转换为 int 感到困惑。首先,我写了一些

where (int)(e.Attribute("Id").Value) == emp.Id

无法编译的东西。 为什么我可以对 (e.Attribute("Id")) 进行显式转换,但不能对 (e.Attribute("Id").Value) 执行此操作?

I recently wrote a piece of code that looked a bit like this:

IEnumerable<DTO.Employee> xEmployee =
    from e in xDoc.Descendants("Employee")
    where int.Parse(e.Attribute("Id").Value) == emp.Id
    select new DTO.Employee
    {
        Id = (int)e.Attribute("Id"),
        LastName = (string)e.Element("LastName"),
        FirstName = (string)e.Element("FirstName"),
        Email = (string)e.Element("Email")
    };

However, I am confused about the casting to an int in the where clause. First, I'd written something like

where (int)(e.Attribute("Id").Value) == emp.Id

which didn't compile.
Why can I do a explicit cast on (e.Attribute("Id")), but can 't I do this on (e.Attribute("Id").Value)?

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

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

发布评论

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

评论(2

℡寂寞咖啡 2024-08-23 02:18:48

查看 XAttribute< 的显式运算符重载/a> 类。

public static explicit operator int(XAttribute attribute);

Check out the explicit operator overloads of the XAttribute class.

public static explicit operator int(XAttribute attribute);
很酷又爱笑 2024-08-23 02:18:48

有一个 XAttribute的显式转换int - 但没有从 stringXAttribute.Value 的类型)到 int 的显式转换。

There is an explicit conversion from XAttribute to int - but there's no explicit conversion from string (the type of XAttribute.Value) to int.

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