問題:
Convert.ChangeType 轉型Nullable<T> 失敗。
解決方式:
Type type = Nullable.GetUnderlyingType(propertyInfo.PropertyType) ?? propertyInfo.PropertyType; propertyInfo.SetValue(model, Convert.ChangeType(ObjectValue, type), null);
文獻參考:
Convert.ChangeType() fails on Nullable Types
0 意見:
張貼留言