Skip to content

Commit

Permalink
HierarchyId added to IsSimpleType
Browse files Browse the repository at this point in the history
  • Loading branch information
VahidFarahmandian committed Mar 9, 2025
1 parent 7c062bc commit 9e6e0dd
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ public static bool IsSimpleType(this Type? t)
{
return true;
}
if (t != null && t.Name == "HierarchyId")
{
return true;
}
if (t == typeof(decimal))
{
return true;
Expand Down

0 comments on commit 9e6e0dd

Please sign in to comment.