The ADO.NET Entity Framework is a set of Object-Relational-Mapping (ORM) tools for the .NET Framework, since version 3.5 SP1.

learn more… | top users | synonyms (2)

7
votes
0answers
121 views

Changing the type of a property with EF Code First

I use Entity Framework Code First. At this time I have the following model: public class MaterialEditNewViewModel { public int RequestID { get; set; } [Required] public double? Quantity ...
4
votes
0answers
411 views

Asp.Net Web API Error: The 'ObjectContent`1' type failed to serialize the response body for content type 'application/xml; charset=utf-8'

Simplest example of this, I get a collection and try to output it via Web API: // GET api/items public IEnumerable<Item> Get() { return MyContext.Items.ToList(); } And I get the error: ...
4
votes
0answers
84 views

How can I update a Code First application to accommodate manual schema changes?

I have an app that was created using EF. The problem is that I noticed some extraneous foreign keys columns created in one of the tables. Dropping these columns causes an [SqlException (0x80131904): ...
4
votes
0answers
140 views

How to select a specific entity diagram from solution explorer

In visual studio 2012 we can split an entity framework model into multiple diagrams. There doesn't seem to be any way to open a specific diagram from the solution explorer though. At the moment you ...
4
votes
0answers
1k views

Entity Framework code first: update SetInitializer throws exception

I've been looking for this strange error for hours but haven't found anything. I have a very simple entity: public class Company { public Guid Id { get; set; } public string Name { get; set; ...
3
votes
0answers
96 views

System.Data.SQLite design-time components in VS2012 targeting .NET 4.0

My application is targeting .NET 4.0 because we plan to continue support for Server 2003 and Windows XP for now. I'm using Visual Studio 2012 with Entity Framework 4.4 (listed as 5.0 in NuGet) and ...
3
votes
0answers
64 views

Entity Framework does not embed metadata into dll

What I'm trying to do I currently have a project file that contains a single EF 5 Model with the .edmx configured to embed the metadata into the output assembly. If I run a local package via Visual ...
3
votes
0answers
69 views

Linq to entities: new Guid(“”) for anonymous type creation vs select

Following my previous question (Only parameterless constructors and initializers are supported in LINQ to Entities) I'm still having a question. I just want to understand what is going on and why ...
3
votes
0answers
90 views

Deadlock with entity framework & LINQ

I have a asp.net/mvc 3/entity framework 4.1 web application which access a class library to get look up table data. When I hit the website for the first time and try to load two different pages ...
3
votes
0answers
148 views

EF saving with F# and ASP.NET MVC

Based on the great samples from Daniel Mohl and his book: https://github.com/dmohl/fs-web-cloud-mobile I have and ASP.NET MVC application in F# with the online template for it. So far I have my ...
3
votes
0answers
179 views

Entity Framework, Update The UPDATE statement conflicted with the FOREIGN KEY constraint "FK

I wrote a Silverlight MVVM (SimpleMVVM toolkit) Ria Services App with EntityFramework Model generated from exsisting DB. At first ViewModel of Page which display list parent entities I load parents, ...
3
votes
0answers
303 views

Error in production only - “The specified value is not an instance of type 'Edm.Int32' Parameter name: value”

I'm receiving the following error "The specified value is not an instance of type 'Edm.Int32' Parameter name: value" whilst using the entity framework. I believe this to be a projection problem with ...
3
votes
0answers
111 views

How to make use of EF CodeFirst Migrations without hardcoding nameOrConnectionString

How can you make EF migrations work without hardcoding a nameorconnectionstring in the base of the required parameterless constructor? EF migrations is forcing you to add a default constructor to the ...
3
votes
0answers
155 views

Code First Parent/Child relationships when both parent and child use TPH inheritance

I am trying to map a parent/child collection scenario where both parent and child use TPH inheritance. I have tried many scenarios--none of which has worked. The key for me is that each parent can ...
3
votes
0answers
218 views

SNIReadSyncOverAsync and WaitForSingleObject blocking EF performance?

I am doing some profiling on a WCF service that uses EF (System.Data.Entities) to read from a sql DB. When I spin up multiple parallel clients that hit the service, the CPUs all go to 100%, ...
3
votes
0answers
137 views

EmitMapper + EF. Collection mapping issue

The source class: public class Page : EntityBase { public Page() { this.Articles = new List<Article>(); } public virtual ICollection<Article> Articles { get; ...
3
votes
0answers
178 views

EF migration to Oracle

Is it possible to migrate EF/NHibernate entities to Oracle database with free provider(No Devart)? I've got this message: No MigrationSqlGenerator found for provider 'Oracle.DataAccess.Client'. ...
3
votes
0answers
322 views

Entity Framework and nullable fields

I'm using EF (v5) against an existing database that has a large number of nullable fields with default values. When inserting a new entity, if no value has been specified for a nullable field, null ...
3
votes
0answers
329 views

EntityFramework / WCF RIA Services / Oracle / Custom number mapping

this post is intended as (not optimal) solution for everyone that has to struggle with the same problem and there is only few to no answer in the net atm... (of cousrse this post will contain ...
3
votes
0answers
188 views

Entity Framework migration with already deployed SQL compact database

My situation: EF 4.3, private install of SQL Compact 4, .Net FW 4, c# winform Problem: after the application was deployed there was the inevitable change requested that required me to create a new ...
3
votes
0answers
215 views

modular concept with entity framework code first and self-contained migration support for each module

i would like to have a modular webapp as this example: appCore: contains [dbContext-instance, core-tables, core-data, ...] appModuleA: requires [appCore] contains [moduleA-tables, ...
3
votes
0answers
332 views

How do Entity Framework pre-compiled views get loaded

I've discovered I can increase performance of my application by pre-compiling my views using the EdmGen.exe tool. This is all well and good, but neither me or my colleges can work out how the ...
3
votes
0answers
239 views

Entity framework metadata exception - No csdl, ssdl, msl in dll resources

I have DAL (model first entity framework 4.1) and Service which is using it in separate projects. Everything was working fine, but after some minor changes (for example I generated model from ...
3
votes
0answers
269 views

Error when using two EDMX files (one dbContext, the other regular EDMX)

For reference, please see this unanswered question. I have the EXACT same error. It's not related to using Code-First by Mistake. Two EDMX files (one with plain old CodeGen, the other with ...
3
votes
0answers
446 views

EF Code First: Include not working on optional relationship

I have a specific query in my code which needs to eager load all related entities (both ->1 FKs and ->N FKs) because the context will be disposed right after that. I made a generic "Query" method ...
3
votes
0answers
573 views

Entity Framework Composite Foreign Key and Navigational Property not being populated in entity during an Include

There are two entities pointing to a legacy database, the main entity should take in the secondary entity using an Include and eager load the data. Unfortunately, the entity comes up null even though ...
3
votes
0answers
2k views

Entity Framework Error: Could not find the conceptual model type for X

I have a demo project with two folders: Data /DbContext /EntityFramework Both have an EDMX, and for the DbContext folder, I have a DbContext generator T4 template setup. Whenever I try to ...
3
votes
0answers
227 views

EF code first error “The specified index already exists. [ IX_Id ]” for object tree

Using EF code first 4.3 I'm trying to model an object tree with a required-required relationships and a required-optional relationships. Here is a simple representation of those classes public class ...
3
votes
0answers
335 views

Entity Framework linked list

I have an entity (I am using code first) that looks like that: public class Node { public int ID { get; set; } public string SomeInfo { get; set; } public virtual Node Previous { get; ...
3
votes
0answers
274 views

Is it possible to use RIA Services and EntityFramework.Migrations together in a project?

On NuGet there are packages: EntityFramework.Migrations EF 4.3.1 EF 4.1 RIA Services, which depends on EF < 4.2. EntityFramework.Migrations doesn't work, because it is now included in EF 4.3+ ...
3
votes
0answers
1k views

Mapping .NET Boolean datatype to oracle number(1,0) in entity framework throws error

Mapping .NET boolean datatype to oracle number(1,0) in .edmx file throws following error. Error 2019: Member Mapping specified is not valid. The type 'Edm.Boolean[Nullable=False,DefaultValue=]' ...
3
votes
0answers
340 views

Using SqlFunctions or Equivalent Collection of EdmFunctions with MySql and Entity Framework

I'm using Linq to Entities, backed by MySql. I'd like to be able to use various built in MySql functions such as rand. If I were using MS SQL Server I could use the SqlFunctions class, but this does ...
3
votes
0answers
218 views

Spatial Join in Entity Framework

I want to write a join statement in LINQ using the dbgeography's "Intersects" method (I am using EF June 2011 CTP). The problem is if I write something like this: var joinQuery = from spQ in ...
3
votes
0answers
692 views

Entity Framework Add Mapping to View

Our app. has a complex set of security rules. I've implemented the rules in a SQL Statement, then translated it to Linq to SQL and the Entity Framework. the EF one was having some performance issues ...
3
votes
0answers
568 views

Appfabric cache (velocity) with Entity Framework

Can anyone let me know how we can use Appfabric cache (velocity) with Entity Framework. I have already seen the article written by "Jaroslaw Kowalski" but velocity code with EF has been removed from ...
3
votes
0answers
276 views

Entity Framework June 2011 CTP And Unit Test Project

We have an MVC/EF project that we just upgraded to the June 2011 CTP. The web project is working great, the problem is, we can no longer reference it from the MSUnit project as it is targeting a newer ...
3
votes
0answers
360 views

EF4 STE include-path…exclude-path?

Context: Repository-pattern, WCF, WPF/SL In my Repository of self-tracking Entities i need to explicitly load some related properties in order to correctly process the query. Those are not the ...
3
votes
0answers
570 views

Entity Framework 4 executes stored procedures for insert operation in incorrect order when there is multilevel parent child relationship

We are encountering a strange problem with Entity Framework 4. Our model contains an entity which is associated with 3 entities, let us call them first level children. One of the child entity is ...
3
votes
0answers
641 views

Entity Framework - Why does EF use LEFT OUTER JOIN's in a 1-to-1 relationship?

Why does .NET Entity Framework produce SQL that uses a subquery and left outer join on a simple 1-to-1 relationship? I expected to see a simple join on the two tables. I'm using Devart Dotconnect for ...
2
votes
0answers
46 views

ASP.NET MVC 3 C# How can i fetch the data where i can post all the details that doesnt contain profile_id

what can i add a statement where i can get also the one where Applicant context is not contain profile_id or when the profile_id is NULL so i can get all the data . Heres my code : var applicantList ...
2
votes
0answers
46 views

Entity Framework won't save complex object

I have basically the following poco classes public class AddressType { public Guid AddressTypeId; public string TypeName; } public class Address { ... public virtual Guid AddressTypeID { get; ...
2
votes
0answers
53 views

How do I add an object with the entity framework when it has attribute to store data in utf-8

My application has an entity in DB that has two fields [id, word] where word is to store URDU words in it written in unicode. The fields have been created properly in DB such that on manually entering ...
2
votes
0answers
29 views

Hide entity in bindingSource

I have a bingingSource and datagridview, the associated with this bindingSource. bs.DataSource = from asd in DBContext.SomeEntity where asd.SomeProperty == true select asd ; How can I hide a row in ...
2
votes
0answers
57 views

How to control JSON.NET serialization of System.Data.Spatial.DbGeometry

I have a DB First Entity Framework 5 Data Access Layer that is mapped to a table containing a SQL geometry type field called CenterCoordinate. The resulting entity contains this: public ...
2
votes
0answers
55 views

EntityFramework Linq To Entities bitfield / boolean issue

I'm baffled as to why the following happens: The scenario is that within Stcoxrefs (which is a pure entity not a derived version) there are two bit fields. Using the following the int, char, varchar ...
2
votes
0answers
63 views

Entity Framework 5 always try to connect to sqlexpress instead of local db

I'm using Visual Studio Express for web to follow this tutorial http://msdn.microsoft.com/en-US/data/jj193542. The tutorial tells that By convention DbContext has created a database for you. ...
2
votes
0answers
97 views

TransactionScope - The underlying provider failed on EnlistTransaction. MSDTC being aborted

Our team have got a problem that manifests as: The underlying provider failed on EnlistTransaction; Cannot access a disposed object.Object name: 'Transaction'. which seemed to appear as soon ...
2
votes
0answers
24 views

To construct domain objects I need to join a table to itself and transpose the results. Can I get Entity Framework to do this for me?

My current project involves a domain concept called an SOQ. Conceptually, an SOQ can be described as having the following attributes: LocationType LocationID ProductNumber VendorNumber Date Qty ...
2
votes
0answers
70 views

How does JSON.NET serialize objects when using EF table-per-hierarchy?

I'm using Entity Framework Code First table-per-hierarchy in my ASP.NET Web API project. One of my models has a List that is of the type of the abstract base class of the hierarchy. List<Dog> ...
2
votes
0answers
62 views

How to handle this hierarchy in Entity Framework

I have a particular sort of data model that has to use a closure table due to the fact that nearly every material_composite is the root of its own tree, but can also be in the hierarchy of any other ...

1 2 3 4 5 105