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

I am trying to replicate an example found on MSDN. I am using ASP.NET and EF 4.1 (CTP?). I've used NuGet to install the EntityFramework package.

I am getting this error: "The provider did not return a ProviderManifestToken string". The database is never created.

Here is my connection string:

 <add name="HospitalContext"
      connectionString="data source=.\SQLExpress;initial catalog=NewTestDB;integrated security=True;"
      providerName="System.Data.SqlClient"/>

Here is my code:

var pat = new Patient { Name = "Shane123132524356436435234" };
db.Patients.Add(pat);

var labResult = new LabResult { Result = "bad", Patient = pat };

int recordAffected = db.SaveChanges();

Here is my context:

public class HospitalContext : DbContext
{
    static HospitalContext()
    {
        Database.SetInitializer(new HostpitalContextInitializer());
    }

    public DbSet<Patient> Patients { get; set; }
    public DbSet<LabResult> LabResults { get; set; }
}

public class HostpitalContextInitializer :
             DropCreateDatabaseIfModelChanges<HospitalContext>
{
    protected override void Seed(HospitalContext context)
    {
        context.Patients.Add(new Patient { Name = "Fred Peters" });
        context.Patients.Add(new Patient { Name = "John Smith" });
        context.Patients.Add(new Patient { Name = "Karen Fredricks" });
    }
}

This is a fully patched SQL 2008 systrem, with VS 2010 SP1.

Everything I've tried from Google has failed.

Please help! :)

Thanks

share|improve this question
It would seem after adding [Key] to the Model, its working past that issue. I'm still with another issue, but this might have resolved that. – bugnuker Mar 24 '11 at 17:53
Also, it might be that I added "Intergrated security=true" to my connection string... – bugnuker Mar 24 '11 at 19:17
I'm having the same exception when working with SqlServerCe.Entity.dll – Nano Taboada Jul 2 '11 at 7:37
1  
In the interest of stuff that can evoke this exception - I spend 20 minutes staring past the typo in the name of the connection string that has to match the name of the context. – justSteve Feb 25 '12 at 5:30

9 Answers

up vote 95 down vote accepted

I was getting this error and tried a few of the earlier suggestions. Then I checked the Inner Exception and noticed I was getting a simple SQL login failure for the user. Just something else to check.

share|improve this answer
26  
InnerException, sooo underused... – Konamiman Sep 27 '11 at 11:34
This was my issue. – Mike Cheel Oct 27 '11 at 15:01
In my case the sql server password was expired – mklein Nov 28 '11 at 9:29
3  
Thanks for pointing me in the right direction. My SQL Express service wasn't started - duh! – camainc Nov 30 '11 at 22:28
Good ol inner exception... i had my DB name wrong when i pointed EF to a fresh backup location... funny thing, i checked the InnerEx and your comment made me go back and reread it... kudos! – Andy Danger Gagne Dec 28 '11 at 21:51
show 5 more comments

This can happen sometimes when you place the connection string within the app.config of the wrong project in Visual Studio.

For example, I got this problem in EF 4.1 (the released version) project + WCF Data Service project and I noticed that I didn't have a connection string specified in the Data Services Project, where it was being used.

share|improve this answer

I had a similar issue with the MvcMusicStore app. I changed a line in the Web.config from "Instance=true" to "Instance=false". It sometimes works without this tweak but I don't know what causes the difference. Reading this http://msdn.microsoft.com/en-us/library/ms254504.aspx didn't really help.

share|improve this answer
Amazing... this was the proper solution for me. I have no idea why. – Kees C. Bakker Nov 12 '11 at 14:13

I was having same error, and actually it was login failed for the specified server. I removed "Integrated Security" attribute from the config connection string and it worked.

share|improve this answer
This worked for me. Anyone else having this issue should try this if the other solutions aren't working. – Justin Jun 15 '12 at 18:01

I had the same problem, and I add the below code just after the instance of my context (onload by exemple)

context.Database.Connection.ConnectionString = @"Data Source=.\SQLExpress;Initial Catalog=Test;Integrated Security=True";
share|improve this answer

By some certain reason of permission, EF can not create database connection. I had faced the same problem all of one day. Finally I had tried following solution and it worked: a/ Open IIS (I'm using IIS 7) b/ Open advanced settings of appool which web site was using (Ex: DefaultAppPool) c/ Look at Process Model group, change Identity value to "Localsystem"

Hope it work with you.

share|improve this answer

In using Visual Studio 11 Beta with EF4.1 and ASP.NET MVC, I nearly pulled my hair out until I found

http://connect.microsoft.com/VisualStudio/feedback/details/740623/asp-net-mvc-4-default-connection-string-improperly-escaped

To fix my problem, I went into Application_Start and changed

Database.DefaultConnectionFactory = new SqlConnectionFactory("Data Source=(localdb)\v11.0; Integrated Security=True; MultipleActiveResultSets=True");

to

Database.DefaultConnectionFactory = new SqlConnectionFactory(@"Data Source=(localdb)\v11.0; Integrated Security=True; MultipleActiveResultSets=True");

share|improve this answer

I was just having the same problem...
the solution that worked for me was:
run the client network configuration tool (type cliconfg in Run)
and make sure TCP/IP is enabled..

share|improve this answer

I finally cracked it - after a slight wild goose chase thinking it was due to permissions.

Revelation: USE SQL PROFILER

(Note: I recently downgraded from EF6 to EF5)

Using SQL Profiler I quickly found the last SQL executed before the reported failure:

SELECT TOP (1) 
[Project1].[C1] AS [C1], 
[Project1].[MigrationId] AS [MigrationId], 
[Project1].[Model] AS [Model]
FROM ( SELECT 
    [Extent1].[MigrationId] AS [MigrationId], 
    [Extent1].[Model] AS [Model], 
    1 AS [C1]
    FROM [dbo].[__MigrationHistory] AS [Extent1]
)  AS [Project1]
ORDER BY [Project1].[MigrationId] DESC

Well look at that - something to do with migrations. It's looking in __MigrationHistory table - which I hadn't even realized it had created (I had already wiped out Migrations in my CSPROJ) and cleared that out.

So I pull up the rows for that table and see that it is tied to a specific product version (v6).

enter image description here

I actually downgraded from EF6 (which I didn't intend to install in the first place) to EF5 (which is more compatible with scaffolding) and that when the problems began.

My guess is that the Model (<Binary data>) column is not backward compatible - hence the The provider did not return a ProviderManifest instance error since it was unable to decode it.

I didn't have anything to lose and just wiped out this table completely and ran Update-Database -Verbose and then was back up and running.

If you're in an advanced environment or already in production then wiping out this table may not be the solution, but this way allowed me to get right back to work.

share|improve this answer
I ended up dropping the __MigrationsHistory table completely and rescaffolding with Add-Migration and Update-Database -Verbose -Force. here's a command reference coding.abel.nu/2012/03/ef-migrations-command-reference – Simon_Weaver Apr 26 at 21:31
the important point being this isn't solely a permissions error – Simon_Weaver Apr 26 at 21:31

protected by Community Jul 9 '12 at 3:20

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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