I'm looking into casting, in this case, from Int32 to a more complex type.
Here's how you would get an instance of this complex type through normal means:
OptionSetValue option = new OptionSetValue(90001111); //int value...
Now, I am trying to do this via reflection. Here is my method doing it:
public static void SetValue(object entity, string propertyName, object value)
{
try
{
PropertyInfo pi = entity.GetType().GetProperty(propertyName);
Type t = Nullable.GetUnderlyingType(pi.PropertyType) ?? pi.PropertyType;
object safeValue = (value == null) ? null : Convert.ChangeType(value, t); //Line where the exception is thrown...
pi.SetValue(entity, safeValue, null);
}
catch
{
throw;
}
return;
}
And here's how I use it:
SetValue(entity, "reason", 90001111);
"reason" is a property of entity of type OptionSetValue. When using it like this, on the above noted line, I will get this exception:
Invalid cast from 'System.Int32' to 'Microsoft.Xrm.Sdk.OptionSetValue'.
Is it because the two properties come from different assemblies ? If so, it is even possible to do what I am after ?
Thanks,