C# Generator
☀/☾ Mode
Generate Class
Validation & Attributes
Identity [DatabaseGenerated]
Length [MaxLength]
Comments
Code Style & Defaults
PascalCase (Smart)
Nullable (int?)
Init Default Values (= 0, "") (New 🐸)
Include Constructor
Encapsulation
Properties
Full Properties
Fields
INPUT: MS-SQL SCRIPT
CREATE TABLE [dbo].[Invoices]( [Id] [int] IDENTITY(1,1) NOT NULL, [InvoiceNumber] [nvarchar](50) NOT NULL, [customer_name] [nvarchar](100) NOT NULL, [TotalAmount] [decimal](18, 2) NOT NULL, [CreatedDate] [datetime] DEFAULT GETDATE() )
OUTPUT: C# CLASS
Copy