I have the code
if (!(row.IsNull("bigInt") || row["bigInt"].Equals(String.Empty)))
{
this.bigInt = Convert.ToInt64(row["bigInt"]);
}
But, it's give to me the error: Cannot inplicity convert type 'long' to 'int'. An explicit conversion exists (are you missing a cast?)