diff --git a/src/ProjGraph.Lib/Services/EfAnalysis/Constants/EfAnalysisConstants.cs b/src/ProjGraph.Lib/Services/EfAnalysis/Constants/EfAnalysisConstants.cs index 70d164c..3a04b31 100644 --- a/src/ProjGraph.Lib/Services/EfAnalysis/Constants/EfAnalysisConstants.cs +++ b/src/ProjGraph.Lib/Services/EfAnalysis/Constants/EfAnalysisConstants.cs @@ -26,6 +26,14 @@ public static class DataTypes public const string Long = "long"; public const string Single = "Single"; public const string Short = "short"; + public const string Byte = "byte"; + public const string SByte = "sbyte"; + public const string UShort = "ushort"; + public const string UInt = "uint"; + public const string UInt32 = "UInt32"; + public const string ULong = "ulong"; + public const string UInt64 = "UInt64"; + public const string Char = "char"; /// /// A set of common .NET value types that are treated as having a default value in EF. @@ -46,7 +54,15 @@ public static class DataTypes Double, Float, Single, - Short + Short, + Byte, + SByte, + UShort, + UInt, + UInt32, + ULong, + UInt64, + Char }; }