gpt4 book ai didi

c# - 如何使用 C# 在 .Net 中的类型对象列表中选择对象属性的所有值

转载 作者:行者123 更新时间:2023-11-30 15:06:42 24 4
gpt4 key购买 nike

呃,我该如何解释这个问题......可能是一个简单的问题,但我的头脑很困惑。

假设我有这个类:

public class NestedObject
{
public string NestedName { get; set; }
public int NestedIntValue { get; set; }
public decimal NestedDecimalValue { get; set; }
}

public class SomeBigExternalDTO
{
public int Id { get; set; }
public int UserId { get; set; }
public int SomeIntValue { get; set; }
public long SomeLongValue { get; set; }
public decimal SomeDecimalValue { get; set; }
public string SomeStringValue { get; set; }
public NestedObject SomeNestedObject { get; set; }
// ... thousands more of these properties... inherited code
}

我想填充的类在这里:

public class MyResult
{
public int UserId { get; set; } // user id from above object
public string ResultValue { get; set; } // one of the value fields from above with .ToString() executed on it
}

我想做的是创建一个助手来返回此对象列表中所有实例的属性值(我猜横截面是我能描述它的最佳方式):

var foo = new List<SomeBigExternalDTO>();
foo = GetMyListOfSomeBigExternalDTO();

public static List<MyResult> AwesomeHelper(List<SomeBigExternalDTO> input, SearchableProperty thePropertyIWant)
{
// some magic needs to happen here...
}

这里棘手的部分是我想根据链接选择器动态传递属性(我不知道该怎么做):

var output = AwesomeHelper(GetMyListOfSomeBigExternalDTO(), x => x.SomeIntValue);
var output2 = AwesomeHelper(GetMyListOfSomeBigExternalDTO(), x => x.SomeNestedObject.NestedIntValue);

这应该返回一个 MyResult 对象列表,其中 UserId 和 SomeIntValue.ToString() 对应于输入列表中的每个项目。

哇,我真的希望这是有道理的。如果不清楚,请告诉我,我会提供更多详细信息。我真的希望这是我忽略的库中的一些东西。

我有什么想法可以实现吗?

最佳答案

可以将其实现为扩展方法:

public static IEnumerable<MyResult> AwesomeHelper(this IEnumerable<SomeBigExternalDTO> input, 
Func<SomeBigExternalDTO, int> intMapper)
{
foreach (var item in input)
yield return new MyResult()
{
UserId = item.UserId,
ResultValue = intMapper(item)
};
}

现在你可以像这样使用它:

var output = GetMyListOfSomeBigExternalDTO().AwesomeHelper( x => x.SomeIntValue);
var output2 = GetMyListOfSomeBigExternalDTO().AwesomeHelper( x => x.SomeNestedObject.NestedIntValue);

话虽如此 - 不要那样做 - 看起来你正在重新发明 Linq 已经为你提供的东西,你可以只使用 Linq 做同样的事情:

var output = GetMyListOfSomeBigExternalDTO().Select( x=> new MyResult()
{
UserId = item.UserId,
ResultValue = x.SomeIntValue
});

var output2 = GetMyListOfSomeBigExternalDTO().Select( x=> new MyResult()
{
UserId = item.UserId,
ResultValue = x.SomeNestedObject.NestedIntValue
});

关于c# - 如何使用 C# 在 .Net 中的类型对象列表中选择对象属性的所有值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7396315/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com