Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to add controller in my mvc 4 application in VS2012 as this image:

add controller

Model:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data.Entity;

namespace MvcDemo.Models
{
    public class MovieDB
{
    public int ID { get; set; }
    public string Title { get; set; }
    public string Director { get; set; }
    public DateTime Date { get; set; }

}
public class MovieDBContext : DbContext
{
    public DbSet<MovieDB> Movies { get; set; }
}
}

connection strings:

<connectionStrings>
<add name="DefaultConnection" connectionString="Data Source=(LocalDb)\v11.0;Initial Catalog=aspnet-MvcDemo-20130315191956;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\aspnet-MvcDemo-20130315191956.mdf" providerName="System.Data.SqlClient" />
<add name="MovieDBContext"
connectionString="Data Source=|DataDirectory|\Movies.sdf"
providerName="System.Data.SqlServerCe.4.0"/>
</connectionStrings>

after clicking "add" this error occurs:

unable to retrieve metadata for 'MvcDDemo.Models.MovieDB'.Using the
same DbCompiledModel to create contexts against different type of
database servers is not supported.instead,create a 
separate DbCompiledModel for each type of server being used.

any suggestion?

share|improve this question
the obvious part is your context is failing. the not obvious part is why. this is usually, in descending order, 1) connection string in web.config, 2) your db 3) since you seem to be using Code First, your initialization method or migration strategy could be the problem. Please explain what you have done to intialize database, what kind of db, anything relevant... – Dave A Mar 16 at 5:10
since I'm beginner,want to implement w3cschools.com example application,so I done it as came in this link – majidgeek Mar 16 at 5:37
ok, share your connection string – Dave A Mar 16 at 6:19
I edited question and added it – majidgeek Mar 16 at 6:40
1  
it's definitely a problem with connecting to db, but I don't see it. you're using compact and your connection looks solid. you're using the right context... – Dave A Mar 16 at 7:03

2 Answers

up vote 1 down vote accepted

in Web.config set second providerName as first providerName and after creating controller undo that.

From:here

share|improve this answer

Change That providerName="System.Data.SqlServerCe.4.0 for this providerName="System.Data.SqlClient that fixed this error

share|improve this answer

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.