Fahadjamal Jamaluddin

Fahadjamal Jamaluddin

  • 1.2k
  • 476
  • 11.5k

Category repetition Issue

Nov 26 2019 2:19 AM
I'm working on list box "<SELECT>" using .net MVC but I faced problem from many days 
Subcategory successfully fetch but Main category Repeat with every subcategory 
in <optgroup>
 
 
"Query perform by ADO.Net Entity Framework"
 
List<tblSubcategory> list = (from x in context.tblSubcategories where (x.Isactive == true) orderby x.CategoryId descending select x).ToList();
return list;
 
 
 

Answers (1)