Browse Source

Return `enum` string if type is `enum`.

pull/21675/head
maliming 1 year ago
parent
commit
4b59d8e586
No known key found for this signature in database GPG Key ID: A646B9CB645ECEA4
  1. 4
      framework/src/Volo.Abp.Core/Volo/Abp/Reflection/TypeHelper.cs

4
framework/src/Volo.Abp.Core/Volo/Abp/Reflection/TypeHelper.cs

@ -317,6 +317,10 @@ public static class TypeHelper
{
return "object";
}
else if (type.IsEnum)
{
return "enum";
}
return type.FullName ?? type.Name;
}

Loading…
Cancel
Save