|
@@ -414,7 +414,7 @@ namespace SAGA.RevitUtils.ExtensibleStorage
|
|
|
if (property != null)
|
|
|
{
|
|
|
MethodInfo mi = getMethod.MakeGenericMethod(property.PropertyType);
|
|
|
- var useValue = mi.Invoke(entity, null);
|
|
|
+ var useValue = mi.Invoke(entity, new object[] { field.FieldName });
|
|
|
property.SetValue(result, useValue);
|
|
|
}
|
|
|
}
|