gpt4 book ai didi

c# - 使用 Func 设置对象的属性

转载 作者:行者123 更新时间:2023-12-05 04:04:19 24 4
gpt4 key购买 nike

为了模拟/测试目的,我想要一个方法,我可以传入某种类型的对象集合,一个 Func 来选择要更新的属性,以及我想为每个属性设置的值到。我想在不使用反射的情况下执行此操作。我也可以使它成为一个扩展方法并将其包装起来以进行模拟,但那是在解决此问题之后。

这是更新属性的示例 Bar对于 List<Foo> 中的每一个:

public class Foo 
{
public string Bar { get; set; }
}

// I want something like this
public List<Foo> UpdateProp_Ideal<TProperty>(List<Foo> foos, Func<Foo, TProperty> propertyFunc, TProperty valueToSet)
{
return foos.Select(x => { propertyFunc(x)[Somehow get setter?] = valueToSet; return x; }).ToList();
}

// I could do this, but it has a broader scope (and more typing)
public List<Foo> UpdateProp(List<Foo> foos, Func<Foo, Foo> updateFunc)
{
return foos.Select(updateFunc).ToList();
}

// Ideal call
var updatedFoos = UpdateProp_Ideal(listOfFoos, x => x.Bar, "Updated!");

// Working call
var updatedFoos = UpdateProp(listOfFoos, x => { x.Bar = "Updated!"; return x; });

最佳答案

public static List<T> UpdateProp_Ideal<T, TProperty>(
this List<T> foos, Expression<Func<T, TProperty>> propertyFunc, TProperty valueToSet)
{
var body = Expression.MakeBinary(
ExpressionType.Assign, propertyFunc.Body, Expression.Constant(valueToSet)
);
var action = Expression.Lambda<Action<T>>(body, propertyFunc.Parameters).Compile();
foos.ForEach(action);
return foos;
}

用法:

var updatedFoos = UpdateProp_Ideal(listOfFoos, x => x.Bar, "Updated!");

关于c# - 使用 Func 设置对象的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52770095/

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