DbFormatter.cs 281 B

12345678910
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace System.Data.Linq.SqlClient {
  5. internal abstract class DbFormatter {
  6. internal abstract string Format(SqlNode node, bool isDebug);
  7. internal abstract string Format(SqlNode node);
  8. }
  9. }