Skip to content
Loading
The model item passed into the dictionary Is of type ...
0
  • Ruchi Sharavat
    In your view use this:
     
    1. @model IEnumerable  
    Becuase from controller you are returning list  return View(await tutorials.ToListAsync()); So, in view you will have to take model as list of the same type i.e. tutorial
    +1