Fix type conversion in ReturnValueBinder
This commit is contained in:
parent
5f48a06413
commit
1195fa1b7e
@ -89,10 +89,10 @@ namespace Connected.Data.Storage
|
||||
var defaultValue = property.PropertyType.GetDefault();
|
||||
|
||||
if (Equals(existingValue, defaultValue))
|
||||
property.SetValue(entity, parameter.Value);
|
||||
property.SetValue(entity, TypeConversion.Convert(parameter.Value, property.PropertyType));
|
||||
break;
|
||||
case PropertyValueBehavior.AlwaysOverwrite:
|
||||
property.SetValue(entity, parameter.Value);
|
||||
property.SetValue(entity, TypeConversion.Convert(parameter.Value, property.PropertyType));
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user