Try the following on your screen:
@model IEnumerable<DysonADPTest.UserViewModel.USerViewModelADP>
Your problem is using the .Select () method, which changes the type of controller action you are returning from
IEnumerable<DysonADPTest.Models.tblEmployeeADP>
which your look also expects something completely different. For this to work, the type that returns the action of your controller and your use in the view must match. It either does not use the .Select () method in the action of your controller, or changes the type of view you are using.
source share