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)

1
vote
0answers
48 views

EF 5.0 Code First navigation property null for only one property

I seem to be having a problem with the following model using EF 5.0 CodeFirst: When I try and do a listing with SalesPlanActivity I am unable to get the Activity name from the navigational property ...
1
vote
0answers
36 views

Entity frame work Saving Many to Many Relationship

I have a news entity and I define a constraint to get the news based on their GroupID using GroupNews Table. Now when I add a new News because nothing is added to GroupNews table , News doesn't show ...
1
vote
0answers
38 views

When does TransactionScope scales the transaction to “Distributed”?

I am having several issues while using a WCF which uses an Entity Framework solution to connect to the database..If for example many requests come from the same user for the same transactional method, ...
1
vote
0answers
29 views

ObjectContext inside another ObjectContext

I am working on a component factory system where ObjectContexts are automatically created depending upon some configuration rules. Each time a method is called, the component factory decides where to ...
1
vote
0answers
53 views

No tables are created after setting WillCascadeOnDelete on true

We are making a project in ASP MVC4, and are using code-first. This means that our database is automaticly created from our code after running it. But i noticed that optional relationships in the ...
1
vote
0answers
101 views

c# Entity Framework does not execute sql

I have the next code: Guid[] sessions; while ((sessions = GetSessions()).Any()) { sessions.AsParallel().ForAll(ProcessSession); } ... private Guid[] GetSessions() { using (var tmpContext = ...
1
vote
0answers
44 views

“EntityType has no key defined” exception although key is defined with HasKey

Using EF 5 (reverse engineered code first), my model was working fine until it suddenly stopped. \tSystem.Data.Entity.Edm.EdmEntityType: : EntityType 'ProjectsDate' has no key defined. Define the ...
1
vote
0answers
61 views

Using Entity Framework with Existing Models

I am working on a MVC4 project which will need to use a number of different databases, each with a few stored procedures for searching. The site is an asset search tool which needs to query various ...
1
vote
0answers
65 views

“Sequence Contains No Matching Element” when calling DBSet.Add()

I'm getting the InvalidOperationException "Sequence Contains No Matching Element" thrown when trying to execute the following code. This is on initial set up of the database: ...
1
vote
0answers
41 views

Caching in Entity Framework Extended and Expression

I'm using the Entity Framework 5.0 and the expression is described in the recommendations Type member support in LINQ-to-Entities? public static Expression <Func <Category , bool >> ...
1
vote
0answers
28 views

entity framework select nonabstract base class

Here is my three models in ef 5 (using code first): class DetailAccount class DetailAccountPersonage : DetailAccount class DetailAccountCostCenter : DetailAccount Where my detailAccount class is ...
1
vote
0answers
67 views

The underlying provider failed on Open with winform

I created win-form application and accessing sql express database using entity framework, below is my connection string, <add name="CLDBEntities" ...
1
vote
0answers
80 views

Merge Two or More Entity Framework Entities with Dynamic Columns?

I've got a project that uses an SQLite database with Entity Framework and VB.Net. The database is complex but everything is set up well for accessing the data in individual tables. What I need is a ...
1
vote
0answers
55 views

Asp.net mvc & Entity Framework : errors when multiple users use to the application

I'm having strange errors on production environment which I don't have on development environment: When testing with 4 users the application is working fine without errors, but when 10 users are using ...
1
vote
0answers
32 views

.NET Dynamic Data: Edit linked entities directly in the form

Suppose I have the following entities in my model (this is a kind of presudo-code, but I think it's enough to understand): Team { string Name string City List<Player> Players } Player { ...
1
vote
0answers
35 views

Error connecting to SQL Server via alias from local IIS7

Just wondering if anyone has run into this before. Had a few devs look at this, and none of us can figure it out. I have an ASP.NET Web Forms app connecting to a Sql Server db via an alias using ...
1
vote
0answers
66 views

Entity framework nested include

Suppose I have three entities: public class Kecamatan { public int Id { get; set; } [Required] public string Nama { get; set; } [Required] public virtual Kota Kota { get; set; } } ...
1
vote
0answers
92 views

Unsupported type mapping for SqLite + EntityFramework 5/6

I'm trying to create C# app under VS 2012 (.NET 4.5) with usage of SqLite managed by EntityFramework 6.0 (also 5.0 was tried out). My steps were following: Install ...
1
vote
0answers
40 views

Intermittent “An EdmType cannot be mapped to CLR classes multiple times” exception

I have an IIS-hosted WCF service that connects to a SQL database backend using Entity Framework 4.1. Occasionally, I will receive the following exception: An EdmType cannot be mapped to CLR ...
1
vote
0answers
46 views

entity framework won't import my firebird stored procedure

I am using EF for .NET 4 and the firebird .NET provider 3.0.2.0 with Firebird 2.5. I have created a stored procedure as follows (DDL from IBEXPERT):- SET TERM ^ ; create or alter procedure ...
1
vote
0answers
43 views

How to update Entity Framework with deserialized object?

I have one method that looks like this: // Adds an element to the TableElement table in SQL AddToSql(TableElement deserializedObject) { MyEntities entities = new MyEntities(); ...
1
vote
0answers
36 views

EF Code First migrations: Table Per Hierarchy Bug

Often we might need to use Entity Framework Code First with an existing database. The existing database may have a structure the allows "Table Per Hierarchy" inheritance. Or we might start with an ...
1
vote
0answers
43 views

How to join three different types on a same column

I need to write a join query for the below scenario. I know how to write joins when there are tables with PRIMARY Key and other table defined it as Foreign Key. But here the case is different. Please ...
1
vote
0answers
55 views

Unable to open underlying provider Entity Framework with .mdf file

I have downloaded the source code from http://www.cainecontrols.com/component/dms/view_document/3 to see how jQuery Full Calander works in ASP.Net. The attached source code uses Entity Framework and ...
1
vote
0answers
50 views

Manually create List of entities where the entity has foreign keys

I am working on an asp.net mvc 3 application. There is a database but for now I can't add data to it, but still the project is using Entity Framework and Database first, so I have the entities created ...
1
vote
0answers
40 views

Virtual properties with count = 0 are null

I'm using Effort (https://effort.codeplex.com/) which is a "ADO.NET provider that executes all the data operations on a lightweight in-process main memory database instead of a traditional external ...
1
vote
0answers
53 views

EF @@ROWCOUNT > 0 leads to wrong upsert

I'm trying to update an existing in the DB entity (MamConfiguration_V1) call it Parent I want to 1) add a reference (navigation) member to it (MamConfigurationToBrowser_V1) call it Child 2) I don't ...
1
vote
0answers
57 views

Exception when using static dbcontext with entitydatasource with onContextCreating

I want to share a single dbcontext across a session. I understand there are a number of issues with using shared, cached Dbcontexts. So I create a global dbcontext and save it in a static class ...
1
vote
0answers
30 views

Streaming of Files from DB using Entity Framework 5.0

We have a scenario in our project that requires us to store large files into DB. We are using entity framework 5.0 for data access. One more thing to note here is that our project needs support for ...
1
vote
0answers
43 views

How to add child object in parent object in EF

Work on EF4. I know EF ObjectContext can be three properties involved in a parent-child association, two navigation properties (parent.Children, child.Parent) and a foreign key property ...
1
vote
0answers
43 views

“Unable to load the specified metadata resource” ASP.NET

I am getting the error "Unable to load the specified metadata resource". I am new to asp.net and am following this tutorial: ...
1
vote
0answers
126 views

Entity Framework Code First TPH inheritance - can different child classes share a field?

I have an Entity Framework Model created using Entity Framework Code First that is using Table Per Hierarchy inheritance where the structure looks a little like this: public abstract class BaseState ...
1
vote
0answers
66 views

Entity Framework migration ignoring some enums

First of all, we are using .NET 4.5, so this shouldn't be an issue. I've got six classes with enum properties, however when I create the migration, for some reason it's ignoring the enum properties ...
1
vote
0answers
83 views

DBContext not updating foreign key on update

We are migrating over from EF4 to EF5 and part of this is the move from POCO Generator created classes to the DBContext generated classes. However, we are now seeing issues where the foreign keys are ...
1
vote
0answers
21 views

Will Updating an ObjectDataSource filtered from an EntityDataSource Update the EntityDataSource?

In an ASP.NET Webform, using a Master/Details set up with a Gridview for selecting and a FormView for details, If I am programmatically binding the selected item to the FormView, like so: protected ...
1
vote
0answers
179 views

WCF DataService and EntityFramework POCO Proxy

I have the following code: public class MyDataService : DataService< MyCustomContext > { public static void InitializeService(DataServiceConfiguration config) { ...
1
vote
0answers
93 views

Error “Failed to set database initializer of type MyNamespace.MyCustomInitializer, MyAssembly” could not load MyContext type

I'm creating a web app using .NET4.5 with Entity Framework 6 alpha3 that uses a new SQL Compact database. The database does not yet exist. I have the following code in a web form: public ...
1
vote
0answers
149 views

Entity Framework Code first missing foreign key entities in WebAPI project

I'm afraid that if I include my code this post will get too long and too complicated, so I'll try and explain my problem. If however you'd like to see some code illustrating this problem, I'll be ...
1
vote
0answers
52 views

w3wp using between 700mb-1.2gb of memory not under load

I have an MVC3 app using EF/Autofac and memcached (3 front end servers). When starting up the app it will quickly jump up to 300mb with one user. On our production site (where the traffic is low (< ...
1
vote
0answers
30 views

TableAttribute in EF 4.4, where is the old constructor with the TableName?

My project needs ef and we need to update to EF4.4 because of using .NET 4.0. So in this case, i changed the references to the new assembly. I get an build error that my TableAttribute(TableName) does ...
1
vote
0answers
52 views

How do I use a base class for all common entity configuration in EF Code First?

I am trying to abstract code common among my entity configuration (mapping) classes into a base class, that looks like this: public class EntityWithIdTypeConfig<T>: ...
1
vote
0answers
33 views

Relation concept between tables of SQL Server

I have a Picture table that generate by this model via entity framework : public class Picture { public Guid Id { get; set; } public string Name { get; set; } public string ...
1
vote
0answers
167 views

Add Controller database error in ASP.NET MVC 4

When using the Add Controller helper/scaffolder with Entity Framework CRUD integration, I get the following error: Unable to retrieve metadata for 'MyApp.Models.MyModel'. Cannot attach the file ...
1
vote
0answers
21 views

Mapping a 0+ association to a entity

I'm using Entity Framework 4.1, and I want to map the following. Car - Car_ID - Name - Created Part - Part_ID - Car_ID - Name - Created So a 'Car' can have 0 or more parts. And a part has to be ...
1
vote
0answers
134 views

Entity Framework 5.0 inheritance with multiple assemblies

I'm using Entity Framework 5.0 with code-first approach plus inheritance for my business objects represented by Table Per Hierarchy. I'd like to have the following structure: //Assembly 'DataAccess' ...
1
vote
0answers
31 views

How can I replace an entity by another entity with the same key in an Entity Framework DB first approach?

I am programming an MVC 4 webapplication using EF 5 Database first. I have some apparently trivial issues for which I cannot find a proper solution. These issues are with the object state manager. ...
1
vote
0answers
93 views

C# unit of work bad implementation

I tried to implement a Unit of Work with SQLCE database. Everything works correctly except for one thing. I have a scenario where a patient can perform different sessions and each session is based on ...
1
vote
0answers
37 views

Wpf entity framework two tables

I've two database tables: 1st: items item id item name item type FK 2nd: item type item type id item type name I want to binding this object to devexpress GridControl and show 2 columns in a ...
1
vote
0answers
137 views

How to cast a string to nvarchar?

I have a text box and I want to save the output result to Unicode (nvarchar in SQL Server), for the save operation I used Entity Framework, my code works fine, my problem is just to convert the text ...
1
vote
0answers
129 views

Deadlock in Entity Framework Code First v 4.3

I have a database that I am updating via an EF code first model. This database contains one "parent" table and 10 or 12 "child" tables. There is a foreign key relationship between the parent and ...

1 3 4 5 6 7 106