Beispiel #1
0
        public override void Visit(AscOrdering asc)
        {
            asc.Part.Accept(this);
            Result.Append("ASC ");

            switch (asc.Nulls)
            {
            case Nulls.First:
                Result.Append("NULLS FIRST ");
                break;

            case Nulls.Last:
                Result.Append("NULLS LAST ");
                break;

            case Nulls.Unspecified:
                break;

            default:
                throw new ArgumentOutOfRangeException();
            }
        }
Beispiel #2
0
 public override void Visit(AscOrdering asc)
 {
     throw new NotSupportedException();
 }
Beispiel #3
0
 public abstract void Visit(AscOrdering asc);