Added conversion fo specific types to match correct type before filling
This commit is contained in:
parent
c7b9f67004
commit
64418fb9e9
@ -71,7 +71,9 @@ namespace eu.railduction.netcore.dll.Database_Attribute_System
|
||||
object value = data_keySet.Value;
|
||||
if (!(value is DBNull)) // Check if value is empty
|
||||
{
|
||||
//if (baseAttribute.parentField.FieldType == typeof(Guid)) value = new Guid((string)value); // If its a guid, i need to convert
|
||||
// Convert type if necessary
|
||||
if (baseAttribute.parentField.FieldType == typeof(Guid)) value = new Guid((string)value);
|
||||
if (baseAttribute.parentField.FieldType == typeof(char)) value = (char)value;
|
||||
|
||||
baseAttribute.parentField.SetValue(classObject, value);
|
||||
break;
|
||||
|
Loading…
x
Reference in New Issue
Block a user