Angular Code Generator Tool - Angular Code+ Web Api+ SqlServer

It creates all the folder structure in Angular with required components, services, html files, css files, models, Modules, routing files. And all the controllers, DTOs, Singleton pattern for DALC layer, and methods for CRUD operations.

This tool generates Angular Type Script code and Web Api scripts(CURD operations) for the given MsSql tables.

 

DB SETUP

 

CREATE TABLE [dbo].[Departments]
 (
[Id] BIGINT NOT NULL PRIMARY KEY, 
[Name] VARCHAR(50) NULL
 );
 
 CREATE TABLE [dbo].[Categories] (
[Id]          INT           NOT NULL PRIMARY KEY,
[Name]        NVARCHAR (50) NOT NULL,
[Description] NVARCHAR (50) NULL
 );
 
 CREATE TABLE [dbo].[Products] (
[Id]           BIGINT        NOT NULL PRIMARY KEY,
[Name]         VARCHAR (50)  NOT NULL,
[CategoryId]   BIGINT        NULL,
[ShortDesc]    VARCHAR (50)  NULL,
[LongDesc]     VARCHAR (200) NOT NULL,
[StartDate]    DATETIME      NULL,
[EndDate]      DATETIME      NULL,
[IsActive]     BIT           NULL,
[Price]        MONEY         NULL,
[Quantity]     INT           NULL,
[EmailAddress] VARCHAR (50)  NULL,
[WebAddress]   VARCHAR (200) NOT NULL
 );
 

 

 

Copy the generadted json data in the following Textarea. And click GetTablesSchema button. 

 

 

 

 

 

 

 

 

 

 

Start Here