I am using SQL Server Developer edition.
I am getting error
Create Database Permission Denied in database 'Master'
when I use Entity Framework code-first in my asp.net mvc 4 application.
I use the following connection string in my web.config file...
<ConnectionStrings>
<add name="DefaultConnection"
connectionString="Data Source=Hasib\sql2008;Initial Catalog=MvcTest;User ID=sa;Password=sa1234" providerName="System.Data.Client">
</ConnectionStrings>
When I register and login then it's ok, but when I write a model named Moves.cs and generate controller and views using that model and run the application then this error occurs.
Any help?