Visual schema explorer
Connect to SQL Server and inspect tables, columns, and foreign keys in a clean interactive graph.
Schmr helps .NET developers explore legacy databases, generate DTOs, build Dapper queries visually, preview results, and save the workflows they actually reuse.
For .NET developers working through legacy SQL Server schemas, Dapper-heavy services, and internal tools.
Schema graph
Tables, keys, joins
Code output
DTOs, SQL, Dapper
Daily use
Saved layouts and queries
Live workflow
Orders
Sales.Orders
Customers
Sales.Customers
Invoices
Billing.Invoices
Generated query
SELECT
o.OrderId,
o.OrderDate,
c.Name AS CustomerName
FROM Sales.Orders o
INNER JOIN Sales.Customers c
ON c.CustomerId = o.CustomerIdDTO output
public sealed record OrderSummaryDto(
int OrderId,
DateTime OrderDate,
string CustomerName
);Why it matters
Old workflow
Schmr workflow
Features
Connect to SQL Server and inspect tables, columns, and foreign keys in a clean interactive graph.
Click a table and generate usable C# DTOs without hand-mapping every property.
Choose tables and columns visually, then let Schmr assemble SQL and the Dapper method.
Inspect sample rows before copying anything into a production project.
Keep useful queries, layouts, and graph arrangements around for real daily use.
Save reusable SQL Server connections so repeat work starts faster.
Workflow
Connect to your SQL Server database
Explore tables and relationships visually
Select tables and columns for the query you need
Preview results and generate SQL, DTOs, and Dapper code
Built for developers
If your day involves Dapper, legacy schemas, unfamiliar joins, or internal tools built on existing databases, Schmr gives you a faster way to understand structure and produce usable code.
Pricing
Starter
A practical entry point for developers exploring schemas and generating code.
Pro
For teams who want previews, persistence, and a faster path through real SQL Server work.
Updates
The app is already usable. If you want product updates, release notes, and new feature announcements, leave your email here and I'll send the important ones.
Schmr
Explore the schema, preview the query, generate the code, and keep the useful pieces around for the next time.