I am trying to add Mobile Number
to my column which is of 10 digit
But it is giving me error as
Value was either too large or too small for an Int32
Here is the code
drpartyInfo[0]["MOB_NUM"] = string.IsNullOrWhiteSpace(e.Record["MOB_NUM"].ToString())
? DBNull.Value : (object)Convert.ToInt32(e.Record["MOB_NUM"].ToString());