n panchal

n panchal

  • NA
  • 14
  • 2.3k

Insert Multiple Rows in Database MVC4 (without LINQ)

Jun 20 2015 5:45 AM
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.............