将 LINQ 语句从查询转换为流畅的 C# 语法
嘿,我陷入了将简单的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
?
?