System.Data.ExpressionNode.IsUnsignedSql C# (CSharp) Method

IsUnsignedSql() static private method

static private IsUnsignedSql ( StorageType type ) : bool
type StorageType
return bool
        internal static bool IsUnsignedSql(StorageType type)
        {
            return (type == StorageType.UInt16 ||
                   type == StorageType.UInt32 ||
                   type == StorageType.UInt64 ||
                   type == StorageType.SqlByte ||// SqlByte represents an 8-bit unsigned integer, in the range of 0 through 255,
                   type == StorageType.Byte);
        }