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.

Przestrzeń robocza Konwertera

Wklej kod SQL po lewej i uzyskaj czystą encję C# po prawej.

Wejście T-SQL

CREATE TABLE

Wyjście C# Entity

Entity Framework
Obsługiwane typy SQL int, bigint, smallint, tinyint, bit, decimal, numeric, money, float, real, date, datetime, datetime2, time, uniqueidentifier, nvarchar, varchar, nchar, char, text, ntext i inne.
Wykrywanie Klucza Głównego Obsługiwane są podstawowe klucze śródliniowe (inline) oraz definicje kluczy głównych na poziomie tabeli.
Najlepsze Wyniki Wklej pełne polecenie CREATE TABLE zawierające schemat, możliwość przyjmowania wartości null i długości.

SQL to EF Model Generator

Ta strona została stworzona dla programistów, którzy chcą internetowego przepływu pracy sql to ef model z szybką konwersją, czytelnym kodem wyjściowym i praktycznymi opcjami zorientowanymi na Entity Framework.

  • 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
FAQ

Często zadawane pytania

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.