I followed the example on scottgu's blog about EF code first CTP5 but I get the error that

System.Data.SqlClient.SqlException: Invalid object name 'dbo.Products'.

this is the code I got.

<add name="CTP5Context"
     connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|EFCTP5.mdf;User Instance=true"
     providerName="System.Data.SqlClient" />


public class CTP5Context : DbContext 
{
    public DbSet<Product> Products { get; set; }
}

public class Product
{
    public int Id { get; set; }
    public string ProductName { get; set; }
    public int Amount { get; set; }
}



var context = new CTP5Context();
        var products = context.Products;            

        return View(products);

im kinda clueless here I done the same as the blogpost, its not my first time with EF (But CTP5 tho), I'm I overlooking something?

link|improve this question

1  
create a connex to that mdf in visual studio and see if there's a Products table. – Will Jan 18 '11 at 18:17
there is one @will – Dejan.S Jan 18 '11 at 18:25
feedback

5 Answers

I had the same problem but I've done 2 changes and it works for me. I changed connection string (Added initial catalog)

<add name="CTP5Context"
     connectionString="data source=.\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|\northwind.mdf;User Instance=true;initial catalog=Northwind"
     providerName="System.Data.SqlClient" />

and in the Global.asax I've added following line in Application_Start()

Database.SetInitializer<Northwind>(new System.Data.Entity.DropCreateDatabaseAlways<Northwind>());
link|improve this answer
2  
This is great if your dealing with code first approach, but if you are trying to map to an existing db this won't work. – Jason Foglia Feb 9 at 21:48
feedback

The exception looks like it's coming from the database. Are you sure your table name is 'Products' or is it 'Product' (singular instead of plural?)

link|improve this answer
I tried both. Usually I could name it plural in the context and singular in database. but now both are plural and no luck. – Dejan.S Jan 18 '11 at 18:24
Try tracing the SQL. That error is coming back from the database server, which suggests to me you may be connecting to the wrong database. What's your connection string? Is the user you're connecting as configured with the right default database? – Dave Swersky Jan 18 '11 at 18:42
My connectionstring is above. I use the sqlexpress straight from vs studio – Dejan.S Jan 18 '11 at 19:01
feedback

If your table name is Product in the database, try this:

[Table("Product", SchemaName = "dbo")]
public class Product
{
    public int Id { get; set; }
    public string ProductName { get; set; }
    public int Amount { get; set; }
}

To use the Table attribute You will need to add the following using statement:

using System.ComponentModel.DataAnnotations;

Hope this helps! It worked for me.

link|improve this answer
Thanks Omar. The table attribute fixed my problem. I can only add that instead of SchemaName = "dbo", I had to do Schema="dbo" (SchemaName being unrecognized). – Jagd Oct 14 '11 at 17:56
1  
Thank you Omar! I had just to use Schema instead of Schemaname. You saved my night! – Richard77 Jan 3 at 3:08
feedback

It seems EF Code First works differently depending on which type of database you're connecting to. If you work with SQLCE which is what ScottGu is using to showcase EF Code First, then all tables will be created with names that are not plural. However, if you use SQL Server 2008 (that's what I tested with), it expected tables names to be plural. There are few ways around this, you could add the table name attribute as Omar shows, or you could override the OnModelCreating event for the context.

 protected override void OnModelCreating(DbModelBuilder modelBuilder) {
        modelBuilder.Conventions.Remove<PluralizingTableNameConvention>();
        base.OnModelCreating(modelBuilder);
 }
link|improve this answer
This was just perfect for the exact scenario described happened to me. Thanks! – Jason Foglia Feb 9 at 21:55
1  
Note: DbModelBuilder should be ModelBuilder – Jason Foglia Feb 9 at 22:02
feedback

Make sure your Products table was created with the dbo Schema, a lot of times the schema will be something other than dbo, such as it can be your username or server name (if the account you're working with isnt in the db_owner schema). Open up the DB (since it's SQLExpress) with Server Explorer in Visual Studio)

To do this right click on the table name and select Open Table Definition then inside the table definition right click and select Properties and in the properties window check what is listed in the schema value. If it's not DBO then you should be able to change it to dbo and save it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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