Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 653 Bytes

File metadata and controls

26 lines (17 loc) · 653 Bytes

SQL Formatter

NuGet version Build Status

C# Library to turn your SQL pretty.

Usage

Import the nuget package:

Install-Package SqlFormatter -Pre

Import the SqlFormatter namespace contained in SqlFormatter.dll.

var formatter = new Formatter("SELECT * FROM TEST");
var formattedSQL = formatter.Format();

To be implemented

  • Formatting of querys with CREATE, ALTER, DROP
  • A better way to format subquerys