is it possible to make asp.net mvc web portal with authorization on windows azure. I want to use Entity framework to access database. Is it possible and if it is, how can I do it?
1 Answer
Absolutely it can be done with MVC, EF and Azure. You need to
- Create ASP.Net membership provider tables in SQL Azure. See here
- Get EF membership provider implementation from here
- Have a look at the ASP.Net MVC membership starter kit here to see how it provides pre build component to to authentication and authorization.
I would recommend not to create any of your own infrastructure for authentication or authorization but leverage the ASP.Net buildin infrastructure