asp.net mvc - List of registered users with details on MVC 5 -


i know if possible how list of registered users , details in mvc 5?

i'm sort of trying users outputted tabular form when creating controllers , views other data sets can edited , forth. i'm using asp .net identity store user details.

try following:

  1. right-click controllers , add new controller
  2. choose mvc 5 controller views, using entity framework
  3. choose user object model class (typically called applicationuser if project created standard vs/mvc template)
  4. you'll find (as did) scaffolding adds new dbset dbcontext called applicationusers. can delete because imagine context should include set of users called users.
  5. finally find , replace applicationusers property users in new controller.

you should able run app , navigate /applicationusers see list of users, usual edit/details/delete action links.


Comments

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -