Beispiel #1
0
 public void Visit(IsNullField component)
 {
     sql.Append("ISNULL(");
     component.Field.Accept(this);
     sql.Append(", ");
     component.WhenNull.Accept(this);
     sql.Append(")");
 }
Beispiel #2
0
 public void Visit(IsNullField component)
 {
     throw new NotImplementedException();
 }