是否有更短的方法将原始实体对象的属性覆盖到当前实体对象?

时间:2010-05-31 05:33:48

标签: entity-framework c#-4.0

例如,我有:

originalItem.Property1 = currentItem.Property1;
originalItem.Property2 = currentItem.Property2;
originalItem.Property3 = currentItem.Property3;
originalItem.Property4 = currentItem.Property4;

如果currentItem的属性值与originalItem的值不同,属性也会改变。

这里有快捷方式吗?感谢。

1 个答案:

答案 0 :(得分:1)

是的,您可以通过reflection

执行此操作

读取两个实例的属性,并在反射的帮助下分配它们。

这是一些代码..

    public static void AssignSourceToDestination(Object source, ref Object destination)
    {
        IList<PropertyInfo> sourceProps = source.GetProperties();
        IList<PropertyInfo> destProps = destination.GetProperties();

        foreach (PropertyInfo property in destProps)
        {
            if (property.CanWrite)
            {
                PropertyInfo sourceProp = sourceProps.Where(p => p.Name.Equals(property.Name) &&
                    p.PropertyType.Equals(property.PropertyType) && p.CanRead).First();
                if (null != sourceProp)
                    property.SetValue(destination, sourceProp.GetValue(source, null), null);
            }
        }
    }

    public static IList<PropertyInfo> GetProperties(this Object me)
    {
        return me.GetType().GetProperties(BindingFlags.Public | BindingFlags.Instance).ToList();
    }