Nested Query MVC LINQ

后端 未结 2 1415
抹茶落季
抹茶落季 2021-01-13 15:44

I\'m new to MVC and LINQ. Currently I faced difficulty on the project and decide to posted up.

My MVC-View that I

2条回答
  •  走了就别回头了
    2021-01-13 15:55

    ViewBag is a dynamic property you can insert ViewBag anything but when you retrieve data from ViewBag, first need to convert it.

    @foreach (var item in (List)ViewBag.services){
        
    
        //Table TAG INSERT Here: ID, Offer, Service
    }
    

提交回复
热议问题