Esempio n. 1
0
 public DateFunction(DateTime2Column column, DatePart pDatePart)
 {
     if (object.Equals(null, column))
     {
         throw new NullReferenceException("column cannot be null");
     }
     this.mColumn   = column;
     this.mDatePart = pDatePart;
 }
Esempio n. 2
0
 public IUpdateSet Set(DateTime2Column column, CurrentDateTime value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }
Esempio n. 3
0
 public IInsertSet Set(DateTime2Column column, DateTime value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }