Tagged Questions

An .edmx file is an XML file in the .Net Entity Framework that defines a conceptual model, a storage model, and the mapping between these models.

learn more… | top users | synonyms

25
votes
3answers
41k 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
457 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
2answers
397 views

EF4: Get the linked column names from NavigationProperty of an EDMX

I am generating POCOs (lets say they are subclasses of MyEntityObject) by using a T4 template from an EDMX file. I have 3 entities, e.g.: MyTable1 (PrimaryKey: MyTable1ID) MyTable2 (PrimaryKey: ...
5
votes
2answers
475 views

Datetime2 conversion in EF4

well, after having spent endless time googling for an answer , i have to add another question in this matter... i have a table with 2 datetime fields, generated by EF4 EDMX designer in VS 2010. the ...
5
votes
1answer
731 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
332 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
583 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
827 views

Entity Framework: Where do I extend the CSDL/MSL?

I'm using Entity Framework 4. I am using a database first model, meaning that I generated the EDM from the database. Now I want to add some model-defined functions. My question is ... where? If I ...
4
votes
1answer
471 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
719 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
302 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
402 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
492 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. ...
3
votes
1answer
517 views

edmx populating mdf?

when i 'generate database from model' in an edmx file it asks for a datasource and generates a sql file and adds the data source to the app.config if i choose sqlserver as the source it works fine ...
3
votes
2answers
2k views

Need to generate EDMX files and compile them

My question might be little bit different or basic for advanced users here. I have a web application which is customizable by administrators. This means, the admin can add new table schema or edit ...
3
votes
3answers
3k views

Using LINQ to Entity Framework with DB2

Is there an IBM Driver so we can use Linq to Entity framework to connect to DB2 and generate the DB2 entities on the desinger edmx file? Any links would be greatly appreciated
2
votes
1answer
55 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
104 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
55 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
84 views

CodeFirst & EDMX in the same application

I have a "legacy" EDMX-based EF model, and a newer CodeFirst model. I want to be able to incrementally migrate an application from the EDMX to the CF, having both in use at the same time. Having ...
2
votes
1answer
320 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
2answers
654 views

EF4: How to generate: .csdl, .edmx, .msl and .ssdl files

I'm working on a project that is using linq to sql. In my model folder I have 4 files: model.csdl model.edmx model.msl model.ssdl But that model is out of date with the current database. I'm ...
2
votes
1answer
206 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
2answers
239 views

Problems with LINQ WhereClause

Many thanks to leppie: Currently I got Expression<Func<vwMailMerge,bool>> whereClause= null; List<vwMailMerge> mailMergeItems = null; int personType = ...
2
votes
1answer
891 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
1answer
428 views

Extending Core Edmx, multiple Edmx's in EF4

We have an EF4 EDMX which contains ~300 entities which are used in our core product suite (entities imported from database). When we get new clients, more often than not they want to store extra ...
2
votes
1answer
231 views

Entity Designer Database Generation Power Pack generates datetime and not datetime2 for ProviderManifestToken = 2008

Im having trouble with the DDL-generation from EDMX using the "Entity Designer Database Generation Power Pack" add-on. It generates datetime-columns instead on datetime2 even though ...
2
votes
2answers
387 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
1answer
849 views

Problems with EDM associations

I'm making an OData service and using an EDM to map the structure of my database and specify associations between tables and create Navigation Properties. I've imported my tables into the EDM using ...
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
263 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
53 views

Entity Framework EDMX file size disproportional big (many megabytes)

This morning I used the Entity Framework designer to update my model from the database to select a single table. Out of nothing thousands of lines of XML were added to storage model of the EDMX file ...
1
vote
1answer
19 views

multiplicity between tables on edmx shema

I'm trying to understand an .edmx shema and i don't know what exactly means the "->" on the table name and what kind of multiplicity is. I haven't saw something like this before..can you help me? ...
1
vote
1answer
22 views

Can't open EDMX-file in designer

It opens as XML file only. In MS VS 2010 Ultimate + SP1. I need to open it in model-designer. What can I do??
1
vote
0answers
27 views

Entity Framework Change database type without recompile SqlCompact

I want to change the Database on which the entity Framework connects. Within the same database type, everything works fine and i only have to change the connectionstring. But when changing between ...
1
vote
1answer
49 views

Manually added stored procedures in edmx file

Is it possible to persistently add the manually added stored procedures in the edmx file? The database is generated from model. Everytime I change something within the editor in the edmx file, the ...
1
vote
1answer
62 views

Changing connection string at runtime for OData/WCF Data Service which uses basic authentication

I have an ODATA services with a single schema. These point to a development database, and is served through a WCF Data Service which is then used by clients running Excel/Powerpivot to fetch their own ...
1
vote
0answers
26 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
2answers
72 views

writing Linq-to-Entities query

I am new to LINQ and Entity Framework and I am stuck on a particular query which I am trying to write. I have a database with the below structure. To keep it simple, I have just included the files and ...
1
vote
1answer
142 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
62 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
103 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
61 views

How can I stop “Cascade Delete” from being silently removed by Entity Framework?

I have a cascade delete set in my database. I have also set a cascade delete for the corresponding relationship in my EDMX model. However if I delete the tables with the relationship from the EDMX ...
1
vote
1answer
297 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
495 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 2 3 4