Exemplo n.º 1
0
 public DateFunction(NDateTimeOffsetColumn column, DatePart pDatePart)
 {
     if (object.Equals(null, column))
     {
         throw new NullReferenceException("column cannot be null");
     }
     this.mColumn   = column;
     this.mDatePart = pDatePart;
 }
Exemplo n.º 2
0
 public IUpdateSet Set(NDateTimeOffsetColumn column, CurrentDateTimeOffset value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }
Exemplo n.º 3
0
 public IInsertSet Set(NDateTimeOffsetColumn column, DateTimeOffset?value)
 {
     this.mSetValueList.Add(new SetValue(column, value));
     return(this);
 }