1
Answer

how to generate report in mvc 4 with relationship two table

Photo of Sudhir Kumar

Sudhir Kumar

9y
938
1
I have a class as
public class reportClass
{
public string OrderId { get; set; }
public string awbno { get; set; }
public List<string> Product { get; set; }
}
 
how to create rdlc report using mvc 4
 
report should be generate like
 
OID001  200156   Bag
                                 Mobile
Thanks  
 

Answers (1)