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)

2
votes
0answers
140 views

Entity Framework & Oracle: Cannot Insert VARCHAR2 > 1,999 Characters

I created a 4,000-character VARCHAR2 field in an Oracle table. I am inserting string values into the field using LINQ to Entities with Visual Studio 2010, .NET Framework 4, and ODAC 11.2 Release 4 and ...
2
votes
0answers
83 views

Generic repository split LINQ Expression between contexts

If you have two DbContexts and say EntityOne belongs to DbContextOne and EntityTwo belongs to DbContextTwo. How can I create a generic repository abstraction that execute EntityOne query and ...
2
votes
0answers
68 views

The LINQ expression node type 'ArrayIndex' is not supported in LINQ to Entities. but is supported by linq-to-sql

A project just switched from linq-to-sql to linq-to-entities, and now I get the error The LINQ expression node type 'ArrayIndex' is not supported in LINQ to Entities. for this line: var a = ...
2
votes
0answers
181 views

Entity Framework and Migration with multiple schemas in a single Context

I am developing a multi-tenant application with Entity Framework Code First. Each tenant will have a different schema in the database, but the application will have a single Context and model for all ...
2
votes
0answers
90 views

Entity Framework Model First and Code First TPH issue

I'm facing two problems by trying to make a model first or code first using TPH concept. The problem is that I need to use table per hierarchy at three levels, so that: When I use Model First, the ...
2
votes
0answers
37 views

Cascading Properties in Entity Framework via Repository Pattern

Say I have a class Person that has an "IsArchived" property. A Person can have a Collection - each of which can also be Archived. Right now I have an UpdatePerson method in my repository that ...
2
votes
0answers
169 views

Dynamic List of Tables in DbContext

I'm new to MVC and I have following problem: In my Application, the client will be able to create Tables by himself with the columns/fields he needs. So my first problem was, how should I design the ...
2
votes
0answers
62 views

Entity Framework Insert where FK Exists

I need some help with what should be fairly easy process. Can someone explain what I need to do to do this insert please? InspectionPremiseTypeID has a fk to InspectionPremiseType.ID however, I have ...
2
votes
0answers
206 views

Is DbSet<>.Local something to use with special care?

For a few days now, I have been struggling with retrieving my entities from a repository (DbContext). I am trying to save all the entities in an atomic action. Thus, different entities together ...
2
votes
0answers
220 views

Error getting data from second db context instantiated 'through' an interface

Currently working with codefirst v5 on .net 4.5 I have 1 'master' context which includes a locations table called 'Geonames' (snippet below) public class CoreContext : DbContext : ...
2
votes
0answers
318 views

Trying to run MVC 3 website plus EntityFramework with Mono gives MissingMethodException

I built an ASP.NET MVC 3 web application on Windows 7 using Visual Studio 2012. My application builds and runs without any issues in Visual Studio. I want to edit and run that web application using ...
2
votes
0answers
117 views

EntityFramework - map a complex property to a json (string) column

I have the following entity: public class SampleClass { public int Id { get; set; } public object Args {get; set; } } Because Args can be of different types and doesnt need to be queryable, I ...
2
votes
0answers
160 views

EF6 alpha Async Await on an Entity Stored Procedure / Function Import?

I'd like to apply the new async await functionality to Stored Procedures / Function Imports imported in my Entity model, but have as yet been unable to with the EF6 alpha. Is it yet possible in EF6 ...
2
votes
0answers
38 views

Pre compiled views are not working

I was trying to use pre-compiled views for good performance, i generated the views successfully and everything is same in compile time and at run time .edmx. Earlier there was mismtach of data ...
2
votes
0answers
109 views

Entity framework database first mappers issue

I am using VS2010, with SQL server 2008 R2. I am a complete beginner at both c# and Entity Framework. The issue I am having in the example below is that when I try to get the questions associated ...
2
votes
0answers
81 views

Entity graph from stored procedures or table valued functions WITH parameters

Can either EF or NHibernate can handle the following scenario? Assume a data model with tables A and B, mapping to entities A* and B* Entity A* contains 0..n child entity B*s Table B contains a ...
2
votes
0answers
254 views

Store update, insert, or delete statement affected an unexpected number of rows (0)

I have tried a lot of variation of this error but failed. That's why I am asking. I am getting this error, Store update, insert, or delete statement affected an unexpected number of rows (0). ...
2
votes
0answers
54 views

Navigation property in derived types

I'm new to entity framework and database design and I'm using database first approach, which in visual studio 2012 default to creating POCO classes with DbContext API. I'm trying to keep the POCO ...
2
votes
0answers
159 views

Order by child records using dynamic field with entity framework

I am interested in sorting a query using entity framework and am having trouble sorting using a dynamic order by expression, I have a parent record (DatasetRecord) with a one to many relationship ...
2
votes
0answers
127 views

With EF Code First is there a way to set identity seed value to something other than 1

I have a need to set the every first value in a auto increment id field to a value different to 1 is there a way to do that ? Is it just a matter of doing a DBCC CHECKIDENT(<table_name>, ...
2
votes
0answers
302 views

Create new parent and child on the same page

My MVC application has a classic parent-child (master-detail) relations. I want to have a single page that create both the new parent and the children on the same page. I have added an action the ...
2
votes
0answers
72 views

One-2-One association and inheritance

I have an inheritance chain rooted A with sub types B and C. Next, I've an entity E like this: public class E { public Guid Id {get; set;} public B B {get; set;} public C C {get; set;} } ...
2
votes
0answers
427 views

ASP.NET MVC 4 ModelState not valid when passing key

I have an ASP.NET MVC 4 WebApi. I use Entity Framework as my ORM (database first). The DB has only one test table with a few fields with an int "id" set as identity (auto increment). I just try to ...
2
votes
0answers
85 views

Can't use IBM DB2 Entity provider with F# TypeProviders

I'm trying to test out the new F# Type Providers, but I can't get it to work nicely with our DB2 database. This is my builder: ...
2
votes
0answers
214 views

Data layer architecture for WPF Rich-Client?

Background I need to build a Rich-Client application using .NET. The app needs to handle TreeViewControls and TableViewControls with about 100000 entities. GUI is build with WPF, very likely using ...
2
votes
0answers
73 views

Entity Framework accessing multiple databases with similar but slightly different schemas

I have multiple existing SQL Server databases for different clients that have schemas that are 95% similar, but may have a few extra custom columns in each database to handle some specific customer ...
2
votes
0answers
1k views

Entity Framework code first migrations throwing error

I have scoured SO, google, Jesus, everything and cannot figure this one out. Here is what I did before I got this error: Installed EF (the pre release version, 6 maybe, I dunno) decided I did not ...
2
votes
0answers
125 views

Update Model from Database always shows tables under Add in EF 4

I have an existing MVC3 project using EF4 with a database first design. All entities and the edmx were generated correctly. The problem is when I add a column to a table or make any change to my ...
2
votes
0answers
35 views

One table to few classes, that using inheritance

I' ve got a few of classes (and tables) like Source1, Source2 etc. I create one table to store source Quant values. Table looks like SourceQuant(ID int PRIMARY KEY, SourceKeyID int, TypeID int, Quant ...
2
votes
0answers
406 views

Change notification in EF5 with multiple DbContext instances - is it documented, and where?

I'm working on an application which will use EF5 as ORM. Before start, I needed to create tests to confirm that everything in EF5 is working as it should. One of things I tested was support for ...
2
votes
0answers
234 views

entity framework, centralize exception handling

My exception handlings are scattered among various forms. Since I need detailed exception handling the code is a little more complex like: catch (Exception ex) { var conn = ...
2
votes
0answers
196 views

Change migration file manually and and keep compatible __migrationhistory record

My team and I are having a lot o problems trying to keep our development (and, soon, the client's production) database in sync with our model while using Entity Framework Code First Migrations. It ...
2
votes
0answers
322 views

Asp.net Mvc MigrationSqlGenerator for Postgresql gives me an error

I've disabled automatic migration and I created a new MigrationSqlGenerator for Postgresql: public Configuration() { AutomaticMigrationsEnabled = false; ...
2
votes
0answers
78 views

What does error code 40162 means?

I saw this from our logs and I searched about this error in various search engines but I found nothing. Here it is: An error occurred while executing the command definition. See the inner ...
2
votes
0answers
110 views

can I use Entity Framework when the DBMS-type is not known at build time?

I'm developing an application (CRUD WS) that connects to single database that can be Oracle or SQL server and the type is read from configuration file. Can I use EF to implement DAL? Some ...
2
votes
0answers
158 views

(EF 5 + .net 4,5) escalating transaction to DTC when querying using EF-Linq and SqlConnection

We recently upgraded our project to use .net 4.5 and EF 5. We use traditional SqlConnection to query legacy part of application and EF-Linq for rest. After upgrade code that used to work fine started ...
2
votes
0answers
296 views

MySQL with Entity Framework is slow because of derived tables. How can I fix it?

I am using MySQL Connector/Net 6.5.4 with LINQ to entities, and I frequently get terrible query performance because the entity framework generates queries that use derived tables. Here is a ...
2
votes
0answers
189 views

Get data from stored procedure

I made a stored procedure to get data like: select * from customer and then I made a model in Entity Framework through 1 function getcustomer. What code should I write to get the list from the stored ...
2
votes
0answers
357 views

SQL Query to Entity Framework (ExecuteStoreQuery)

I have a SQL query that works fine and returns proper results declare @memberId decimal set @memberId=100 select s.Id, s.StatusDate, s.StatusText, p.FirstName, p.LastName, p.Photo from ...
2
votes
0answers
132 views

When using Entity Framework with LinqPad or EFProviderWrapperToolkit, table valued functions have an incorrect SQL parameter type

My Entity Framework application uses several table-valued-functions to do full-text searches in SQL Server 2008. My function parameters are always strings that translate to nvarchar(4000) in the ...
2
votes
0answers
179 views

Generate IN statement for decimal values with Oracle

I'm having trouble getting LINQ to generate an IN statement. I have a function that looks like the one below, taking as input a list of long representing the primary keys to find. Using the contains ...
2
votes
0answers
186 views

How to work with multiple DbSets with common base class in EF 5?

I have 2 POCO classes: class Email: Base { public int SomeProperty { get; set; } } class Photo: Base { public int SomeOtherProperty { get; set; } } and a base class abstract class Base { ...
2
votes
0answers
245 views

Mvoing DbContext in a separate class with a different project cause exception

I am using Entity Framework for my DAL (using DBContext). The layered architecture we are following in big on separation of concern and for this purpose, the entity class that get generated has to go ...
2
votes
0answers
128 views

error in making relationship between aspnet_users table and any custom table

I moved membershiptables to my database by using aspnet_regsql.exe. Then I created a table named "Article" and needed to save the user id of the article`s author in "Article" table. So I added a ...
2
votes
0answers
170 views

EF5 breaks when seeding

I upgraded my MVC project to the latest EF5 from EF4.3.1. From that point my database would always fail to initialize. If I change the reference back to EF4.3.1 everything works fine. what gives? ...
2
votes
0answers
40 views

ToTraceString takes long time to execute

I have a service that executes a query through Entity Framework 4, and it doesn't have any problem, until now I tried to execute it on a Windows Server 2003 with IIS 6 or a Windows 7 with IIS 7. Now, ...
2
votes
0answers
123 views

Automatic Migrations seeding and AddOrUpdate not matching, always adding

I have a Sessions object with the following fluent API configuration HasMany(s => s.Enrollments); HasRequired(s => s.Course).WithMany(c => c.Sessions).HasForeignKey(s => s.CourseId); ...
2
votes
0answers
255 views

Random 500 error - An item with the same key has already been added

The website is running .Net 4 with MVC 3, Entity Framework, and Ninject. This error appears randomly and we are only able to detect it in load testing or production. Have not seen it once in ...
2
votes
0answers
226 views

Entity framework selecting from navigation properties when it doesn't need to

Sorry for the subject title, couldn't figure out a good way to describe it. So basically I have a Transaction table and a Currency table, connected via a foreign key. When the objects are created in ...
2
votes
0answers
160 views

Self Tracking Entities SaveChanges() Exception when add entity in many to many relation

I have 2 entity objects "Persons" and "Seminar". Relationship - many to many. A project consist of - EF4.0/STE, WCF and WinForms. When i try Add Persons To Seminar public void ...

1 2 3 4 5 106