25
votes
3answers
42k views

Create a Dropdown List for MVC3 using Entity Framework (.edmx Model) & Razor Views && Insert A Database Record to Multiple Tables

After reading 100's of articles on here about how to create a DropDown List in MVC 3 with Razor Views, I could not find one that fit my case. So after Hours and Hours of searching for the answer I ...
10
votes
3answers
5k views

No Entity Data Model (EDMX) Template with Visual Studio 2010 SP1 & ADO.NET Entity Framework 4.1

I'm having a lot of issues with the templates of Visual Studio 2010 SP1 & ADO.NET Entity Framework 4.1 I noticed that other people had these problems, and asked similar questions, but I don't ...
8
votes
3answers
462 views

How can I make the Entity data model designer use my database column descriptions?

I am using EF4 with Visual Studio 2010. I have a SQL database already created and all my columns are documented with the Description property in SQL management studio. When I create the edmx in Visual ...
5
votes
1answer
734 views

Entity data model, unique index

In my entity data model I have an entity with one property as the primary key and another property that will have unique values too, so I’d like to create a unique index on that other property. The ...
4
votes
2answers
339 views

Design Decision: Multiple EF EDMX Files

If you have used the Entity Framework then you know the EDMX is cool. You also know it can become HUGE and almost unmanageable. When it gets large, it is tempting to create a second EDMX or third - ...
4
votes
2answers
587 views

Can Entity Framework 4.1 designer “update model from database” for selected entities only?

The situation: Sometimes a database schema is not what you would consider an ideal representation of the system's information and you may not be able to change it. We have been using Entity Framework ...
4
votes
1answer
478 views

Entity Designer missing

As the title says, somehow the entity designer disappeared from my installation of Visual Studio 2010. When trying to open an .edmx file, it only opens it in the XML editor. When i choose "Open ...
4
votes
2answers
720 views

Is it possible to update a sql database schema from an edmx in Visual Studio 2008?

So with LINQ-to-SQL I know you can update the database from the LINQ objects and update the LINQ objects from the SQL. I am using LINQ's entity framework (a.k.a. LINQ-to-entities) and I can update ...
3
votes
1answer
314 views

Tool to convert Entity Framework EDMX to Code First

Is there a tool to convert an edmx into code-first? I know there was talk of one appearing in a CTP a while back, but I can't find any updates relating to this. There's a guy on the MSDN forums who ...
3
votes
2answers
406 views

Change Entity Framework provider in configuration

I was hoping to be able to switch data providers to/from SQL Server and SQL Server Compact Edition via just a configuration change. But it doesnt work and looking at the EDMX file I think I can see ...
3
votes
1answer
494 views

Entity Framework — Dependent objects not deleted before principal object when cascade deleting composite key entities

I'm having an issue with cascade deletion of dependent objects with composite keys. Specifically, the emitted SQL instructions by EF tries to delete the principle entity before the dependent entity. ...
2
votes
1answer
58 views

Linq-To-Entities connection strings for for multiple edmx files

I have a dot net 4.0 DAL library project that contains three edmx files. I chose to split my data model in three files because there are many tables in my db, and from what I've read here at ...
2
votes
2answers
109 views

Entity Designer for .edmx file doesn't work in VS2010

I have a .edmx file and I can't open it with the designer. It just opens as plain XML file. When I try to "run custom tool" on it, then it says that: The custom tool 'EntityModelCodeGenerator' ...
2
votes
1answer
56 views

Missing associations when building a model from existing SQL server database

I'm using the Entities Framework for the first time. I have a strange problem: I have this small database on SQL-server. Here is the diagram from the management studio: As you can see, the foreign ...
2
votes
1answer
324 views

How to switch between SQL and SQL CE in Entity Framework 4? Or how to programmatically change the “Schema Namespace” inside an edmx file

Working with a model first approach on Entity Framework 4, I'd like to switch the database from real SQL (Data.SQLClient) to SQL CE (Data.ServerCe) back and forth. I know how to do it manually: ...
2
votes
1answer
207 views

Can I map an EF entity to two tables with a polymorphic foreign key?

I would like to make a new, mapped entity that looks like this: public class PathedItem { public long Id { get; set; } // from the Items table public string Name { get; set; } // from the ...
2
votes
1answer
898 views

How to properly delete and re-add Entity Data Model

newbie to Entity Framework here. Using VS 2010 and SQL Server 2008 express DB. I was having trouble refreshing an Entity Data Model after adding new tables. So, I followed a suggestion I found here ...
2
votes
2answers
389 views

Upgrade/update SQL database to new schema version while keeping as much of the old data as possible

Im not used to work with SQL and I hardly know any DDL-scripting at all. Im using ADO.NET Entity Framework 4 in Visual Studio 2010 with EDMX-designer and a Self-Tracking Entity Generator. It does the ...
2
votes
2answers
268 views

Saving my own created entites while updating in EDMX

I have created my own entities in edmx i.e. temp table for a stored procedure. Now when i update my EDMX and adds or update any table, the entity which i created (for temp table) is removed from SSDL ...
2
votes
1answer
265 views

How do I upgrade an existing EDMX 1.0 model to the new EDMX 2.0?

I'd like to upgrade an existing EDMX model without having to regenerate it by hand. The database is old, contains virtually no foreign keys and has many tables that had to be merged into single ...
2
votes
1answer
1k views

How to map Stored Procedures with EF4?

Is it possible to map stored procédures whit EF 4 using T4 templates ? I have searched and I conclude that it is not possible yet. It exist some methods like Edm.SourceComplexTypes(), ...
2
votes
2answers
5k views

EDMX connection string

so the story is like this. I have a project, called PA.DLL, which have an entity model inside of it (edmx) file. In another project which i'm referencing to the PA.DLL, i copied the connection ...
2
votes
1answer
221 views

.NET EntityStoreSchemaFilterEntry filter patterns

First question to SO, I hope I'm doing this right. ;) Regarding System.Data.Entity.Design.EntityStoreSchemaFilterEntry : I'm looking for some detailed documentation on this class. The MSDN docs have ...
1
vote
0answers
27 views

ADO.NET Entities not picking up an FK relationship

I've got a table "Persons" (PersonId, Name, Address) which contains information about people. I then subclass this information with tables "Clients" (PersonId, DateJoined) and Victims (PersonId, ...
1
vote
1answer
147 views

Many-to-many relationship, edmx, Entity Framework, SQL express DB

I have a question regarding many-to-many relationships in regards to entity framework. Ok, so I have an existing SQL express db which I have extended to included a new table called "Country". Since I ...
1
vote
1answer
63 views

using TextTransform.exe to generate code from edmx file

I have an edmx file that I generated using edmgen2, I am using the POCO Entity Generator.tt file that Visual Studio uses or generates when I click "Add Code Generation Item" in the edmx designer. I ...
1
vote
0answers
104 views

Cannot insert NULL into a non-identity column in Entity Framework. Funny thing… it's not null?

I have a SalesOrder table with columns for ID and OrderID. ID is an auto-generated int. OrderID is a non-nullable string with a max length of 20, and we use it to store the customer's order number for ...
1
vote
1answer
306 views

ASP.NET MVC3 Entitiy Framework - The EntitySet 'x' specified as part of this MSL does not exist in MetadataWorkspace

I'm making an reservation system. The following query Reservatie r = (from res in entities.Reservaties where (res.datum == date && res.tijdslot == time) select ...
1
vote
1answer
47 views

Get Tables and Relationships

Is there a way to get a list of tables and relationships from an EDMX using the MetadataLoader?
1
vote
1answer
502 views

Error while using DBContext Generator with Entity Framework 4.1 (Updated)

When I use ADO.NET DBContext Generator with Entity Framework 4.1 installed on an EDMX I got the following error: Error: this template attempted to load component assembly ...
1
vote
1answer
35 views

Is it possible to generate XML from a EDMX model?

I'm generating my POCO's from edmx model, and would like to know if its possible to make use of the neat codegen features of Entity Framework to create my an xml document along with the POCO (which ...
1
vote
1answer
159 views

Server Error in '/' Application

I have a standard ASP.NET 4 web site which uses the Entity Framework. It seems at random intervals, I get fatal errors. Refreshing the page works, but I know it's not a problem with the database. The ...
1
vote
0answers
115 views

Wrapping navigation properties in Entity Framework 4

Say I have a database table Node. The table contains (among other attributes) the ParentID attribute which is a self-referencing FK. Entity Framework model created from such database table contains ...
1
vote
1answer
285 views

Entity Framework - Already Defined

I have a problem with an EDMX file which I've never encountered before. Seemingly randomly when the site is running or I'm debugging, the EF will bomb out and complain that everything is re-defined. I ...
1
vote
3answers
514 views

Load an .edmx into the DbModelBuilder

I'm planning on using the Entity Framework 4.1 in my next project, but I'm having trouble finding a good way to go about it. In short, I want to build a multi-tiered application in which the entities ...
1
vote
0answers
213 views

EF 4.1 Poco generation from multiple linked EDMX

I would like to : define one first EDMX for generating pocos into one first assembly (base library) define another EDMX for generatiog pocos into a second assembly have the entities defined into the ...
1
vote
2answers
74 views

load entire db to data model?

I've decided to use the entity framework as data layer. I have more then 200 tables, and two questions: 1. When creating the data model (*.edmx) - should I include all tables (entire db)? 2. Later, ...
1
vote
1answer
554 views

Visual Studio 2010 Entity Framework .edmx not available to edit

I am trying to edit my .edmx model in Visual Studio 2010 however, the symbol is not correct and when I click to edit it does not present the designer where I can update the model etc What I get is ...
1
vote
2answers
999 views

Generate Entity Framework code without generating EDMX diagram

I currently generate XML from my single source of truth and save it as an Entity Framework EDMX file and then use the EntityClassGenerator object to create the classes from the diagram. Is there a way ...
1
vote
1answer
372 views

Entity Framework: 0..1-to-many foreign key constraint not recognized?

I am using EF4 to map a DB schema to an object model; I initially generated the EDMX from the database but have been editing the XML directly (trying to leave the SSDL the same while changing the ...
1
vote
2answers
322 views

Visual Studio and Entity Framework edmx: My Custom edits are over-written

I'm using Visual Studio 2010, Entity Framework 4, and model-first development. I modelled in the VS EDM designer, then custom edited my edmx file so that the table names are uppercase (not my choice, ...
1
vote
1answer
645 views

How to get List of all tables in the Entity data framework?

I need to get the list of All tables in the Entity Data Framework. I know that in Linq2SQL we can use something like this. var dataContext = new DataContext(); var dataContextTableNames = (from ...
1
vote
1answer
425 views

edmx connection string

I am developing an application that uses edmx for dataaccess. I realized that each edmx file have its own connection string in the configuration file. Is there a way to share one connection string for ...
1
vote
2answers
568 views

How to programatically generate CSDL or EDMX from a set of existing POCO objects

I'd like to simulate what WCF Data Services does with it's "$metadata" tag... that is, send a CSDL document that describes an existing set of objects that may (or may not) be part of an Entity ...
1
vote
2answers
257 views

Entity Framework & ASP.NET MVC 2 : Choosing a database instance on-the-fly

I'm currently working on an ASP.NET MVC 2 project which needs several instances of the same SQL Server 2008 R2 database (One in production using SQL Replication, the others being it's development ...
1
vote
2answers
206 views

Combo box in entity edmx

I'm newbie to c#. I have a question about combobox binding with foreign key in entity edmx object. I have "Customer Card" edmx entity object that has fields and one of the fields is foreign key ...
1
vote
1answer
436 views

Exporting a large Entity Framework Diagram

I have a fairly large Entity Diagram. I tried to export it to an image, unfortunately because it's so large the image comes out all pixelated. See this link ...
1
vote
2answers
496 views

Transforming Entity Framework EDMX File with XSLT

I would like to make some changes to my EF4 edmx file without modifying the file itself, mainly so I don't loose all my changes if I regenerate the model from the database. I'm familiar with XSL and ...
1
vote
1answer
661 views

DomainService only works with EDMX file?

I want to add a new domain service class within vs2010. I choose my entity framework database context in the dialog "Add New Domain Service Class", but it doesen't show me the available entities. If I ...
1
vote
1answer
88 views

Unable to specify abstract classes in TPH hierarchy in Entity Framework 4

I have a TPH heirachy along the lines of: A->B->C->D A->B->C->E A->F->G->H A->F->G->I I have A as Abstract, and all the other classes are concrete with a single discriminator column. This works ...

1 2