I'm new at ASP.NET, and no matter how many articles, tutorials and forums I read, I just end up confused about this: How exactly do I use SimpleMembership in my ASP.NET+Razor+Entity Framework CodeFirst+MVC 4 project?
I'm using Visual Studio Express 2012 for Web. So far, all I've done is start a new project -> MVC 4 internet project. So I got all the scaffold that provides me with the Account controller and views.
What I'm exactly trying to build is: a website where people can upload their resume and view job listings and apply for them. For this, I need 3 different user roles:
-An admin, who can create accounts and can see everything in the site. The admin is the only one who can create a user account for a company offering job positions.
-Company users, whose accounts are created by the site admin. They can only post job offers (this kind of user can't apply for a job).
-Aplicant users, who can register to create their own accounts and can apply for jobs (this kind of user can't create job offers).
Is there some beginner's guide to manage user roles? Because all I find is either too specific or not exactly for the VS Express 2012 IDE, so I can't exactly follow what they say.
Thanks a lot to anyone who can help me with this!