Sudhir Kumar

Sudhir Kumar

  • NA
  • 223
  • 12.4k

how to generate report in mvc 4 with relationship two table

Sep 3 2015 9:03 AM
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