Loading UtilityHub...
Skip to main content
JSON / XML Power Tools
Choose Theme
Dark
Default dark theme
Light
Clean & bright
Ocean
Deep sea blues
Sunset
Warm purple vibes
Forest
Nature greens
Cyberpunk
Neon electric
Nord
Arctic frost
Monokai
Classic editor
JSON Formatter
XML Formatter
JSON ? SQL Table
LINQ ↔ SQL
JSON ↔ C#
JSON Formatter & Validator
Format
Minify
Validate
Clear
Input JSON
Output
Highlighted
Tree
Raw
Copy
Expand All
Collapse All
JSON ? SQL Table
Generate SQL
Clear
Table Name
SQL Dialect
SQL Server
MySQL
PostgreSQL
Oracle
Output Type
CREATE + INSERT
INSERT Only
CREATE Only
MERGE / UPSERT
JSON Structure
Auto Detect
Array of Objects
Single Object
Flatten Nested
Paste JSON Data
Schema
Paste JSON to detect schema
Generated SQL
Copy
Paste JSON and click "Generate SQL"...
LINQ ? SQL
SQL ? LINQ
LINQ Query (C#)
SQL Output
Copy
Quick Examples
Where
Join
GroupBy
OrderBy
Aggregate
Left Join
Distinct
Contains/IN
Like
Insert
Update
Delete
SELECT
JOIN
GROUP BY
INSERT
UPDATE
DELETE
TOP N
EXISTS
LINQ ? SQL Reference
Toggle
LINQ
SQL
.Where(x => x.Age > 18)
WHERE Age > 18
.Select(x => new { x.Id })
SELECT Id
.OrderBy(x => x.Name)
ORDER BY Name ASC
.OrderByDescending(x => x.Age)
ORDER BY Age DESC
.Take(10)
TOP 10 / LIMIT 10
.Skip(20).Take(10)
OFFSET 20 FETCH NEXT 10
.Count() / .Sum() / .Average()
COUNT(*) / SUM() / AVG()
.Distinct()
SELECT DISTINCT
.GroupBy(x => x.Dept)
GROUP BY Dept
.Any(x => x.IsAdmin)
EXISTS (SELECT 1...)
x.Name.Contains("test")
Name LIKE '%test%'
x.Value ?? 0
ISNULL(Value, 0)
.Join(b, a=>a.Id, b=>b.AId,...)
INNER JOIN b ON a.Id=b.AId
XML Formatter & Validator
Format
Minify
Validate
XML ? JSON
JSON ? XML
Clear
Input XML
Conversion Output
Copy
JSON ↔ C# Class Converter
JSON → C#
C# → JSON
Clear
Root Class:
Properties
Nullable
[JsonProperty]
JSON Input
C# Class Output
Copy
UtilityHub Assistant
?? Hi! I'm your UtilityHub assistant. I search across your
Knowledge Base
,
saved Snippets
, and all tools to help you. Ask me anything — errors, tools, or saved code!