We're running into a small problem deploying a web application to another environment. We created the application's db using Entity Framework Code First approach (db automatic created from Model). In this development environment, we are using integrated security and the tables are created under the dbo user. The tables are like
     [dbo].[myTable]

For our other environment, we are using username/password authentication for the DB. We scripted the tables and created them on the DB. So they are now named like
     [myDbUser].[myTable]

When running the application, we encounter always the problem
     Invalid object name 'dbo.myTable'.

Seems like the code is still trying to look for a dbo table, which is not present and thus fails.

Can anyone shed some light on this problem? Where does Entity Framework gets this dbo prefix from?

Thanks

link|improve this question

75% accept rate
feedback

1 Answer

up vote 5 down vote accepted

Specify schema explicitly:

[Table("Users", Schema = "dbo")]
public class User { .. }

Or specify default db schema for your user - 'dbo'

link|improve this answer
and how would you do this in Fluent?? (without the attributes) – Littlefool Jun 5 '11 at 19:40
Littlefool, override OnModelCreating of you database context class and specify mappings there. Here is an example: weblogs.asp.net/scottgu/archive/2010/07/23/… – Tarkus Jun 5 '11 at 19:47
I tried that. only thing is that when i debug i see that the code never comes in the OnModelCreating method. i have the impression it's getting the model from some cached source. – Littlefool Jun 5 '11 at 20:02
never mind. I was modifying an older DbContext in the solution that is no longer used. thanks, you saved my night (or what's left of it) ;) – Littlefool Jun 5 '11 at 20:06
feedback

Your Answer

 
or
required, but never shown

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