0
Answer

Insert Multiple Rows in Database MVC4 (without LINQ)

Photo of n panchal

n panchal

9y
480
1
I have below table
 
Table : Issue Master
 
IssueTrnId bigint ,
IssueDate datetime ,
ChallanNo varchar(20),
Remarks text,
ProjectId int
 
Table : Issue Detail
 
IssueDetailId bigint
IssueTrnId bigint  [FOREIGN KEY]
ProductId int
IssueQty decimal(18, 2)
Preference int
 
 Detail table have multiple Row related Master Table
Insert Data Using MVC
Please Answer me.............