简体   繁体   中英

Error! 'Object cannot be cast from DBNull to other types.' C# with method sum()

enter image description here

  1. Code is error

sum1 = Convert.ToInt32(dtt.Compute("Sum(BIN1)",string.Empty));

  1. how can I display on Listbox and just show columns name.
1.public static object DBNullValueorIntIfNotNull(int value)
    {
        object o;
        if (value <= 0)
        {
            o = 0;
        }
        else
        {
            o = value;
        }
        return o;
    }

2.if(sum1 == 0) { columns name.visibale = false;}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM