Developer Tools

Convert SQL Server tables to Entity Framework models

Transform SQL Server CREATE TABLE scripts into EF-ready C# entity classes with clean property names, type mapping and annotation support.

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 Server to Entity Framework Model

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

  • Generate EF-style model classes from SQL Server table definitions
  • Convert SQL Server column types to matching C# property types
  • Support nullable SQL columns and optional required attributes
  • Speed up database-first Entity Framework model creation
SSS

Sıkça sorulan sorular

Can I generate Entity Framework models from SQL Server tables?

Yes. Paste your SQL Server CREATE TABLE script and generate a C# entity model suitable for Entity Framework workflows.

Does the output work with EF Core?

The generated class is designed for Entity Framework-style workflows and can be adapted for EF Core projects depending on your mapping preferences.

Can I include table and column attributes?

Yes. Attribute options can be enabled to generate annotations like [Table], [Column], [Key] and [MaxLength].