示例#1
0
文件: Avg.cs 项目: gunivan/cooq
 public AvgInteger(NIntegerColumn column)
 {
     if (object.Equals(null, column))
     {
         throw new NullReferenceException("column cannot be null");
     }
     this.mColumn = column;
 }
示例#2
0
 public IUpdateSet Set(NIntegerColumn column, int?value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }