Tagged Questions

9
votes
4answers
466 views

Entity Framework 4 Generate Database From Model With Multiple Schemas

I am using EntityFramework 4 with POCO classes, but I like to divide the database up into separate schemas. While I can do this designing the database first and then generating the model and ...
7
votes
3answers
680 views

What is the best practice when the database schema changes in entity framework?

I am using Entity Framework to do the ORM in .NET project. The problem I am facing is that when the database schema changes, there is no proper mechanism to update the edmx file. For example, If ...
7
votes
9answers
1k views

How would you design your database to allow user-defined schema

If you have to create an application like - let's say a blog application, creating the database schema is relatively simple. You have to create some tables, tblPosts, tblAttachments, tblCommets, ...
4
votes
7answers
7k views

Update database schema in Entity Framework

I installed VS SP1 and played around with Entity Framework. I created a schema from an existing database and tried some basic operations. Most of it went well, except the database schema update. I ...
1
vote
2answers
83 views

Entity Framework 4.1 : Is there a way to switch schema on runtime

up to now (EFv1) we used this solution: http://efmodeladapter.codeplex.com/ after upgrading to .NET Framework 4.0 we are looking for built in way to change schema on runtime when using Entity ...
1
vote
1answer
90 views

Flexible Persistence Layer

I am designing an ASP.NET MVC 2 application. Currently I am leveraging Entity Framework 4 with switchable SQLServer and MySQL datastores. A requirement recently surfaced for the application to allow ...
1
vote
1answer
503 views

Changing database structure at runtime with Entity Framework?

I have to write a solution that uses different databases with different structure from the same code. So, when a user logs to the application I determine to which database he/she is connected to at ...
1
vote
2answers
1k views

Changing schema name on runtime - Entity Framework

I need to change the storage schema of the entities on runtime. I've followed a wonderful post, available here: ...
0
votes
0answers
42 views

How to get the Schema name of a Table in Entity Framework?

I use a User-Schema Separation technology to separate tables in the Database. Could you tell me how to get Schema names of EntitySets (Tables) in Entity Framework? Thanks.
0
votes
0answers
40 views

Is it possible to generate a model from Entity Framework's 4.1 Code First approach?

I know that I can go from model/db-first -> code-first (through "Add Code Generation" option) but is it possible to go from code-first -> generate a visual .edmx model?
0
votes
1answer
454 views

SQL Server “User-Schema Separation” and Entity Framework issues

I have been fooling around with EF with a database that has implemented user-schema separation with a twist, there are multiple tables with the same name but are separated via the schema. So like: ...
0
votes
1answer
121 views

A SQL 2005 Database Design and Entity Framework transaction conundrum

I have a database design issue that I am trying to also fit into Entity Framework. Its complex, I have inherited it and its too late to make drastic changes! I want to draw on others wisdom before I ...