Ejemplo n.º 1
0
 public void Visiting(SqlSoundexFunction soundexFunction)
 {
     if (soundexFunction.SqlExpression != null)
     {
         sqlBuilder.Append("Soundex(");
         soundexFunction.SqlExpression.Accept(this);
         sqlBuilder.Append(")");
     }
     else
         throw new NPersistException("Soundex must take a parameter");
 }
Ejemplo n.º 2
0
 public void Visited(SqlSoundexFunction soundexFunction)
 {
 }