Skip to content

Repo for the Full Stack Code Gen - Visual Studio extension

Notifications You must be signed in to change notification settings

aucinc123/fullstackcodegen

Repository files navigation

Description

A Visual Studio extension that parses a SQL Server CREATE TABLE definition file and generates SQL Server Stored Procedures, ASP .Net Model, Service, and Controller code, and Angular Model, Service, and Components code... all with one, simple click.

Operation

  • Right-click on a *.sql file that contains a CREATE TABLE statement, similar to the following:
CREATE TABLE [dbo].[SampleObject]
(
    [Id] INT NOT NULL PRIMARY KEY,
    [Name] VARCHAR(50) NOT NULL,
    [Comments] VARCHAR(max) NULL,
    [Price] DECIMAL(20,2),
    [IsEnabled] BIT DEFAULT((1)) NOT NULL,
    [TypeId] INT NULL,
    [StartTimestamp] DATETIME NULL
)
  • Select the "Full Stack Code Gen" command:

FullStackCodeGen - Context menu

  • Select the appropriate options on the "Full Stack Code Gen" tool window and click "Preview Code":

FullStackCodeGen - tool menu

  • Smile :)

More Information

About

Repo for the Full Stack Code Gen - Visual Studio extension

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published