将 LINQ 语句从查询转换为流畅的 C# 语法

发布于 2024-11-06 05:29:51 字数 372 浏览 0 评论 0原文

嘿,我陷入了将简单的 Linq 语句从查询语法转换为 C# 中的流畅语法的困境。我认为这是可能的,但我需要提示。

from property in target.GetType().GetProperties()
select new
{
   Name = property.Name,
   Value = property.GetValue(target, null)
};

到..

var props = target.GetType().GetProperties().Select(p=>p.Name.... )

Select 之后我需要更改什么?

Hey, I'm stuck in a converting a simple Linq statement from query syntax to fluent syntax in C#. I think that is possible, but I need a hint.

from property in target.GetType().GetProperties()
select new
{
   Name = property.Name,
   Value = property.GetValue(target, null)
};

to..

var props = target.GetType().GetProperties().Select(p=>p.Name.... )

What I need change after Select?

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

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

发布评论

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

评论(2

情绪 2024-11-13 05:29:51
var props = target
    .GetType()
    .GetProperties()
    .Select(p => new { 
        Name = p.Name, 
        Value = p.GetValue(target, null)
});
var props = target
    .GetType()
    .GetProperties()
    .Select(p => new { 
        Name = p.Name, 
        Value = p.GetValue(target, null)
});
謸气贵蔟 2024-11-13 05:29:51
var props = target.GetType()
                  .GetProperties()
                  .Select(p => new {
                      Name = p.Name,
                      Value = p.GetValue(target, null)
                  });

var props = target.GetType()
                  .GetProperties()
                  .Select(p => new {
                      Name = p.Name,
                      Value = p.GetValue(target, null)
                  });

?

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