Ejemplo n.º 1
0
 public SumBigInteger(NBigIntegerColumn column)
 {
     if (object.Equals(null, column))
     {
         throw new NullReferenceException("column cannot be null");
     }
     this.mColumn = column;
 }
Ejemplo n.º 2
0
 public IUpdateSet Set(NBigIntegerColumn column, long?value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }