Beispiel #1
0
 public MaxSmallInt(NSmallIntegerColumn column)
 {
     if (object.Equals(null, column))
     {
         throw new NullReferenceException("column cannot be null");
     }
     this.mColumn = column;
 }
Beispiel #2
0
 public IUpdateSet Set(NSmallIntegerColumn column, short?value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }