我用Google搜索了propblem也搜索左右。 有一吨,所有的这些(我发现)的未完成的解决方案。 你能帮我请,设置一个类的属性和它的嵌套属性的属性,由一个选定的lambda
,使用Reflection
?
public class Parent
{
public class Child
{
public int Id { get; set; }
}
public string Name { get; private set; }
public int Number {get; private set; }
public Child Nested { get; set; }
public Parent()
{
Nested = new Child();
}
public Test Set<TValue>(Expression<Func<???> func, TValue value)
{
// find the property name from expression
// set the property by value
return this;
}
}
和消费者,我希望能够:
Parent t = new Parent();
t.Set<int>(t => t.Number, 6)
.set<string>(t => t.Name, "something")
.Set<int>(t => t.Nested.Id, 25);