Create Product Grid Application With .Net MVC And EF with CRUD Operations
Create Grid Based Web Application for CRUD(Create,Read,Delete,Update) Operation Using .Net MVC 5 And SQL Server Step 1 : Create Required Tables in Data Base to Store the Details About the Product CREATE TABLE [dbo].[ProductDetails]( [ProductId] [int] IDENTITY(1,1) NOT NULL, [ProductName] [varchar](50) NULL, [Quantity] [varchar](50) NULL, [Prize] [bigint] NULL, CONSTRAINT [PK_ProductDetails] PRIMARY KEY CLUSTERED ( [ProductId] ASC )WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY] ) ON [PRIMARY] GO So here it will Create Table ProductDetails in your Database. Step 2 : Create MVC Project in Visual Studio as below Options : select option Basic in next Step... Step 3 : A dd New ADO Entity Model And give Name to Entity Model as .edmx file in your project Step 4 :After Creating Model.edmx Generate Model From Database Step 4 :...