Developer Tools

Generate EF model classes from SQL

Build EF-ready model classes from SQL Server table definitions in seconds with clean C# properties and optional data annotations.

Dönüştürücü Çalışma Alanı

SQL'inizi sola yapıştırın ve sağ tarafta temiz bir C# entity'si alın.

T-SQL Girdisi

CREATE TABLE

C# Entity Çıktısı

Entity Framework
Desteklenen SQL Tipleri int, bigint, smallint, tinyint, bit, decimal, numeric, money, float, real, date, datetime, datetime2, time, uniqueidentifier, nvarchar, varchar, nchar, char, text, ntext ve daha fazlası.
Birincil Anahtar Tespiti Satır içi (inline) birincil anahtarlar ve yaygın tablo seviyesindeki birincil anahtar tanımları desteklenmektedir.
En İyi Sonuçlar Şema, boş geçilebilirlik (nullability) ve uzunlukları içeren tam bir CREATE TABLE ifadesi yapıştırın.

SQL to EF Model Generator

Bu sayfa, hızlı dönüşüm, okunabilir çıktı ve pratik Entity Framework odaklı seçeneklere sahip çevrimiçi bir sql to ef model iş akışı isteyen geliştiriciler için oluşturulmuştur.

  • Generate Entity Framework model classes from SQL scripts
  • Convert SQL Server columns into C# properties
  • Support primary key detection and common EF annotations
  • Create clean model classes for .NET and EF workflows
SSS

Sıkça sorulan sorular

Can I generate an EF model from SQL?

Yes. Paste a SQL Server CREATE TABLE script and the tool generates an Entity Framework-style C# model class.

Does the generator detect primary keys?

The tool supports inline primary keys and common table-level primary key definitions.

Can I download the generated model?

Yes. You can copy the generated C# output or download it as a .cs file.