Take the 2-minute tour ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
add comment

1 Answer

Absolutely it can be done with MVC, EF and Azure. You need to

  1. Create ASP.Net membership provider tables in SQL Azure. See here
  2. Get EF membership provider implementation from here
  3. 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

share|improve this answer
add comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.