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