File: SqlClient\Common\DbFormatter.cs | |
Project: ndp\fx\src\DLinq\Dlinq\System.Data.Linq.csproj (System.Data.Linq) |
using System; using System.Collections.Generic; using System.Text; namespace System.Data.Linq.SqlClient { internal abstract class DbFormatter { internal abstract string Format(SqlNode node, bool isDebug); internal abstract string Format(SqlNode node); } } |