我有两个相同类的对象,我想用Dirty列表中的字段更新p2。到目前为止,我设法编写以下代码,但努力获得p1属性的值。我应该将此对象作为参数传递给GetValue
方法。
Person p1 = new Person();
p1.FirstName = "Test";
Person p2 = new Person();
var allDirtyFields = p1.GetAllDirtyFields();
foreach (var dirtyField in allDirtyFields)
{
p2.GetType()
.GetProperty(dirtyField)
.SetValue(p1.GetType().GetProperty(dirtyField).GetValue());
}
_context.UpdateObject(p2);
_context.SaveChanges();
提前致谢。
答案 0 :(得分:2)
你应该试试:
foreach (var dirtyField in allDirtyFields)
{
var prop = p2.GetType().GetProperty(dirtyField);
prop.SetValue(p2, prop.GetValue(p1));
}
最好将PropertyInfo
实例存储在变量中,然后尝试将其解析两次。
答案 1 :(得分:1)
在每次迭代中,您必须获得对PropertyInfo
的引用。当你调用它的SetValue
方法时,你应该传入2个参数,你要为其设置属性的对象和你设置的实际值。对于后者,您应该在同一属性上调用GetValue
方法,并将p1
对象作为参数传入,即值的来源。
试试这个:
foreach (var dirtyField in allDirtyFields)
{
var p = p2.GetType().GetProperty(dirtyField);
p.SetValue(p2, p.GetValue(p1));
}
我建议您将dirtyField
变量保留在字典中,并从此字典中检索关联的PropertyInfo
对象。它应该快得多。
首先,在类中声明一些静态变量:
static Dictionary<string, PropertyInfo>
personProps = new Dictionary<string, PropertyInfo>();
然后您可以将方法更改为:
foreach (var dirtyField in allDirtyFields)
{
PropertyInfo p = null;
if (!personProps.ContainsKey(dirtyField))
{
p = p2.GetType().GetProperty(dirtyField);
personProps.Add(dirtyField, p);
}
else
{
p = personProps[dirtyField];
}
p.SetValue(p2, p.GetValue(p1));
}
答案 2 :(得分:1)
您是否知道不需要检索每个对象的属性?
类型元数据对于整个类型的任何对象都是通用的。
例如:
// Firstly, get dirty property informations!
IEnumerable<PropertyInfo> dirtyProperties = p2.GetType().GetProperties(BindingFlags.Instance | BindingFlags.Public)
.Where
(
property => allDirtyFields.Any
(
field => property.Name == field
)
);
// Then, just iterate the whole property informations, but give the
// "obj" GetValue/SetValue first argument the references "p2" or "p1" as follows:
foreach(PropertyInfo dirtyProperty in dirtyProperties)
{
dirtyProperty.SetValue(p2, dirtyProperty.GetValue(p1));
}
检查PropertyInfo.GetValue(...)
和PropertyInfo.SetValue(...)
的第一个参数是您要获取的对象,还是设置整个属性的值。
答案 3 :(得分:0)
您需要传递the instance from which you want to get the property value,如下所示:
p1.GetType().GetProperty(dirtyField).GetValue(p1, null)
如果索引属性类型,则第二个参数可用于检索特定索引处的值。
答案 4 :(得分:0)
IIrc你发送的p1是保存值的实例,而null表示你没有搜索特定的索引值。