我想将Object克隆到另一个对象,但从原始对象中排除属性。例如,如果对象A具有Name,Salary,Location,那么如果我排除了Location Property,则克隆对象应该只有Name和salary属性。感谢。
答案 0 :(得分:1)
这是我用来执行此操作的扩展方法:
public static T CloneExcept<T, S>(this T target, S source, string[] propertyNames)
{
if (source == null)
{
return target;
}
Type sourceType = typeof(S);
Type targetType = typeof(T);
BindingFlags flags = BindingFlags.IgnoreCase | BindingFlags.Public | BindingFlags.Instance;
PropertyInfo[] properties = sourceType.GetProperties();
foreach (PropertyInfo sPI in properties)
{
if (!propertyNames.Contains(sPI.Name))
{
PropertyInfo tPI = targetType.GetProperty(sPI.Name, flags);
if (tPI != null && tPI.PropertyType.IsAssignableFrom(sPI.PropertyType))
{
tPI.SetValue(target, sPI.GetValue(source, null), null);
}
}
}
return target;
}
您也可以查看Automapper。
以下是我如何使用扩展程序的示例。
var skipProperties = new[] { "Id", "DataSession_Id", "CoverNumber", "CusCode", "BoundAttempted", "BoundSuccess", "DataSession", "DataSessions","Carriers" };
DataSession.Quote = new Quote().CloneExcept(lastSession.Quote, skipProperties);
由于这是作为扩展方法实现的,因此它会修改调用对象,并为方便起见返回它。这在[问题]中讨论过:Best way to clone properties of disparate objects
答案 1 :(得分:0)
如果你在谈论java,那么你可以试试“transient”关键字。至少这适用于序列化。