Ejemplo 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;
 }
Ejemplo n.º 2
0
 public IUpdateSet Set(DateTime2Column column, CurrentDateTime value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }
Ejemplo n.º 3
0
 public IInsertSet Set(DateTime2Column column, DateTime value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }