public static IEnumerable<tbl_index_menu> PutParentInMenuTop() { using (SportContext db = new SportContext()) { return db.tbl_index_menu.Where(z => z.parent == 0 && z.id_position == 1 && z.name_menu != "home").OrderBy(z => z.orderlist).ToList(); } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)