Tabela aukcji zawiera wyniki „Odmowa uprawnień w bazie danych CREATE TABLE” ASP.NET - MVC4

Korzystam z ASP.NET MVC 4 - c #, aby połączyć się z żywą bazą danych i wyświetlić wyniki, jednak gdy przejdę do przeglądania strony, zwraca następujący błąd:

CREATE TABLE permission denied in database 'DatabaseName'.

Description: An unhandled exception occurred during the execution
of the current web request. Please review the stack trace for more
information about the error and where it
originated in the code.



Exception Details: System.Data.SqlClient.SqlException: CREATE TABLE
permission denied in database 'DatabaseName'.

Source Error: 


Line 16:         public ActionResult Index()
Line 17:         {
Line 18:             return View(db.AccControls.ToList());
Line 19:         }
Line 20

Kontroler:

namespace TestDBCon.Controllers
{
    public class HomeController : Controller
    {
        private DataDbContext db = new DataDbContext();

        public ActionResult Index()
        {
            return View(db.AccControls.ToList());
        }

    }
}

AccControl.cs (model)

namespace TestDBCon.Models
{
    public class AccControl
    {
        public int ID { get; set; }
        public int ControlCode { get; set; }
        public string Nominal { get; set; }
        public string CostCentre { get; set; }
        public string Department { get; set; }
    }

    public class DataDbContext : DbContext
    {
        public DbSet<AccControl> AccControls { get; set; }
    }
}

Web.Config:

<add name="DataDbContext" connectionString="Data Source=***;initial catalog=***;integrated security=True;" providerName="System.Data.SqlClient" />

Nie próbuję stworzyć stołu? Próbuję tylko wymienić wyniki, więc jestem bardzo zdezorientowany. To musi mieć coś wspólnego z MVC?

Każda pomoc byłaby bardzo mile widziana!

Dzięki

questionAnswers(2)

yourAnswerToTheQuestion