gpt4 book ai didi

c# - 什么 C#/Linq 代码在不知道它们的类型的情况下复制两个对象之间所有匹配的属性名称值?

转载 作者:太空狗 更新时间:2023-10-29 22:04:02 25 4
gpt4 key购买 nike

我有一个众所周知的 POCO Customer 类要从我的方法返回。但是,我只填充由不断变化的表达式 p => new {p.id, p.name} 指定的属性,例如,作为方法的参数。

我需要以某种方式复制这两个对象之间的所有匹配字段。

var returnObject = IList<Customer>();
var partialFieldObject = DC.Customers.Select( expParameter); // wont know the fields

foreach( var partialRecord in partialFieldObject)
{ foreach (var property in partialRecord // Pseudo code)
{
returnObject[property] = property.value; // More Pseudo code
}
}
End result is a strongly typed Customer POCO returned that only has the selected fields populated with values.

最佳答案

假设 partialFieldObject 上的属性与 Customer 上的属性完全对齐(区分大小写)...

void SetProperties(object source, object target)
{
var customerType = target.GetType();
foreach (var prop in source.GetType().GetProperties())
{
var propGetter = prop.GetGetMethod();
var propSetter = customerType.GetProperty(prop.Name).GetSetMethod();
var valueToSet = propGetter.Invoke(source, null);
propSetter.Invoke(target, new[] { valueToSet });
}
}

关于c# - 什么 C#/Linq 代码在不知道它们的类型的情况下复制两个对象之间所有匹配的属性名称值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4039753/

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