Hi
This is my Dbscript
CREATE TABLE [dbo].[customer1](
[CustID] [int] IDENTITY(1,1) NOT NULL,
[Name] [varchar](50) NULL,
[Address] [varchar](50) NULL,
[ContactNo] [varchar](50) NULL,
CONSTRAINT [PK_customer1] PRIMARY KEY CLUSTERED
(
[CustID] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
) ON [PRIMARY]
here i need how to use dbml in mvc4 and insert and bind the records for html table
how will do this mvc4
any one solve this.
Mark as Answer if its helpful to you
Kumaraspcode2009@gmail.com