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)

0
votes
0answers
10 views

Where is EF creating my Database? If it is. .

So I have SQLServerExpress 2008 R2 running, and Visual Studio 2010. I believe I have a SQL Server instance running (fig. 1). I have been informed that if I don't specify a connection string in my ...
0
votes
2answers
16 views

Set value to checkbox & retrieve that value in controller

I want to display all userroles in my company access, however i can do this and at the same time the selected userroleid has to be retrieved from form so as to save in database. In View: I have ...
-1
votes
0answers
10 views

How to find which of the items are modified in a list when we work on client side and send it to server side in Asp.net MVC

I am working on SOA based project and i got got a situation where I am sending the whole array of object to server and then I have to see which of the objects are new and which one I have to update, ...
3
votes
1answer
748 views

SQL Azure: More Intermittent Timeouts

We have a set of 5 online auction systems running on Windows Azure & SQL Azure. Each system consists of a single web worker and one or more web roles. Each system is using ASP.NET MVC 3 and Entity ...
0
votes
2answers
46 views

c# linq fill not mapping properties

I am using the Entities Framework Code First and I have two entities: public class Product { public int ProductID { get; set; } public decimal Price { get; set; } public int ...
0
votes
1answer
17 views

How to show a list of checkbox according to a DropDownList in ASP MVC and Entity Framework

I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005. I am using also Entity Framework and Code First Method. I have a view 'Application' which contain a DropDownList and a ...
4
votes
5answers
2k views

How to get property change notifications with EF 4.x DbContext generator

I'm playing around with Entity Framework 4.3, and so I am using the DbContext Generator to create the context and entity classes. With the default EF 4 code generator template, entity classes ...
0
votes
1answer
8 views

EF5 code first migrations byte[] column

I am trying to create a data model that will work on both SQL Server 2008/2012 and SQLCE4. The problem i have is with binary data columns. SQLCE requires use of the 'image' column type, but this is ...
1
vote
2answers
34 views

Collection to use with Entity Framework when seraching for single result

I followed an Entity Framework tutorial and wrote an ApplicationConfig model (this is simplified) - public class ApplicationConfig { public ApplicationConfig() { this.Users = new ...
0
votes
0answers
641 views

Entity Framework: Should the EntityContainer name contain at least two words?

I am using entity framework, using (almost) hand-crafted csdl, ssdl, and msl files. I've noticed that object construction seems to fail if the name of the EntityContainer consists of a single word. ...
0
votes
0answers
20 views

Multiplicity constraint violated

I have two entites: ClaimDetail (int ID, IList ClaimDetailStatus, other...) ClaimDetailStatus (int ID, ClaimDetailClaimDetail, other...) Configuration: ...
0
votes
0answers
8 views

Is it possible to generate EDMX from an Xml database?

I'm programming an application to run queries on a database. So I used EDMX and it's fine. However I realized that I can have different versions of my database. I know I can update the edmx from the ...
2
votes
1answer
30 views

How to delete object without retrieving it in EF

We have a table that has a couple of nText columns so looking to delete a rows without retrieving it if possible Another twist is that we don't know the IDentity value but a couple of other values ...
0
votes
0answers
16 views

ASP.NET MVC 4, Code First, View to Create/Edit Object with Many to Many Relationship

I have the model (code first) & database (SQL Server) setup with many to many relationship & seeding fine: A Place can have many tags (eg Restaurant, bar, cafe) - and tags can belong to many ...
5
votes
1answer
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; ...
32
votes
7answers
25k views

How do I delete multiple rows in Entity Framework (without foreach)

I'm deleting several items from a table using Entity Framework. There isn't a foreign key / parent object so I can't handle this with OnDeleteCascade. Right now I'm doing this: var widgets = ...
0
votes
0answers
8 views

Entity Framework 3 context.database.sqlquery causing deadlocks

I have run into an interesting scenario. Using the context.database.sqlquery available in the Entity Framework I am calling a stored procedure to update a field. When calling the procedure ...
0
votes
1answer
8 views

Database.SetInitializer to null not working Entity Framework 4.3.1 Code First

I have a context class that inherits from an abstract base AuditableDbContext : DbContext. The AuditableDbContext takes two parameters, one for the auditor and one for the context to audit into. In ...
0
votes
1answer
27 views

Code First database design issue - addresses

I have a POCO that represents a form a user fills out. There are about 10 different addresses on the form, so I separated them out into a separate address POCO. The problem is how to set up the ...
0
votes
1answer
24 views

Entity Framework 5 Enum that is built from a db table

I have those two entities : Color entity is mapped to a table of constant values that represent colors. Code=1, Name="Red" Code=2, Name="Blue" And so on... In Car entity, the Color property is ...
0
votes
2answers
21 views

What does CTP stand for in Entity Framework?

I am seeing CTP in an awful lot of posts lately. What does CTP stand for ? Thanks
0
votes
2answers
17 views

EF inserts Child before Parent Entity, throws conflicted with the FOREIGN KEY constraint

I'm inserting (adding new) child and parent entities in single SaveChanges(), and EF decided to insert the child first (referencing parent, can see the insert statement in the profiler), which ...
2
votes
2answers
40 views

How to deal with sql concurrency issues in a website

I am making a website using asp.net mvc. I have a table that looks like this Create Table Items( [Id] [int] IDENTITY(1,1) NOT NULL PRIMARY KEY, [Colname] [nvarchar](20) NOT NULL //OTHER ...
0
votes
2answers
20 views

How to show a table basing on the value of DropDownList in ASP MVC and Entity Framework

I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005. I am using also Entity Framework and Code First Method. I have a view 'Application' which contain a DropDownList. The ...
1
vote
1answer
66 views

Reuse connection among DbContext instances in unit test

I'm trying to setup some unit tests using EntityFramework 5, SQL Server Compact 4 and Xunit. I'm using different context instances because I'm testing a ASP MVC app and I need to test the behavior ...
0
votes
2answers
34 views

Compilation error of DropDownList in ASP MVC and Entity Framework

I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005. I am using also Entity Framework and Code First Method. I have a view 'Application' which contain a DropDownList like this ...
0
votes
2answers
32 views

Entity Framework piece together LINQ to Entity Queries

I need some help here. I am trying to make a portion of an EF Query reusable. var query = from sr in SomeEFRepository.SelectAll() select new { KeyValuePivotField1 = (from ...
3
votes
1answer
118 views

RIA Services / EF. Changes to bool field in a derived class are not saving to database

We are using EF with RIA services. A simple application. Load a list of items, browse/edit/save. The problem is that some of the changes are not persisting to the db. I have a model with the ...
0
votes
0answers
26 views

Fields Not Created in Entitiy Framework Code First

I have a POCO classes that inherit from a Base class. I'm using the EF Power Tools to display the entity data model. What I'm noticing is that that only two of the five properties are displaying from ...
5
votes
3answers
176 views

List of Expression<Func<T, TProperty>>

I'm searching a way to store a collection of Expression<Func<T, TProperty>> used to order elements, and then to execute the stored list against a IQueryable<T> object (the underlying ...
0
votes
4answers
43 views

Code-First equivalent in Ruby

I'm suuuuper lazy and don't like making migrations. I want to make models I'm going to use anyway and have something else figure out the migrations for me in ruby because .Net has spoiled me. Is there ...
0
votes
2answers
24 views

Entity Framework POCO Eager Loading children

This is my POCO entities scenario: Manufacturer (1) has Cars (*) One Car entity has a navigation property to a Manufacturer entity. One Manufacturer entity has a navigation property to a Cars ...
3
votes
3answers
82 views

Testing: Entity Framework by faking context

I am eating myself up at this moment. It is like Entity Framework isn't testable. I've read alot of posts and threads where they use unit of work or moq or the repo pattern. I am in a phase that i ...
0
votes
2answers
29 views

What is the correct way to unit test this simple function (using EF 5.0) or does it make sense to unit test?

I have spent some time trying to understand the topic of unit testing as it relates to using EF 5.0/DbContext. The function below is the one to unit test. From my basic understanding it seems I have ...
1
vote
4answers
3k views

Check the existence of a record before inserting a new record

I'm using the Ado.net Entity Framework for the first time and I need to check if this record exist before I insert it to the database. Preferably I'd search if AuthodSSID exists and not the key ...
0
votes
1answer
15 views

add-migration causing a “Could not load assembly” error

Here's what I am looking at PM> Add-Migration AddedSubdivion -StartUpProjectName Data -Verbose Using StartUp project 'Data'. Using NuGet project 'Registry'. Could not load assembly 'Registry'. (If ...
1
vote
2answers
32 views

Linq All with a condition

DB: I'm trying to bring back data only when All of the ReviewItems meet the condition of ReviewItemStatus==3. This works. Problem: But then I want to narrow the scope of All to all ReviewItems ...
1
vote
0answers
21 views

Master/Detail DataGridViews not populating Details DataGridView

I'm using the following technologies: WinForms, Entity Framework 4.4 (5.0 on .NET 4.0), DBContext I have (what I think is) a very simple Master/Details form, that actually worked just fine before I ...
0
votes
1answer
25 views

where clause in entityDataSource with field from other table entity

I've got 3 tables, products, productspercategory and category. You can choose a category, after which you get all products from that category listed. But I cannot seem to get this to work. I am ...
1
vote
2answers
21 views

Limit the database size with SQL Server Express LocalDB

I'm creating a database for system that has a small (16Gb) hard disc. I would like to limit the size of the database to 512Mb so that I still have room on the disc for other applications. I'm having ...
0
votes
2answers
91 views

Entity Framework 6 Unable to retrive metadata

I am using EF 6 pre-3. Product model: namespace ProductStore.Models { public class Product { [ScaffoldColumn(false)] public int Id { get; set; } [Required] ...
0
votes
0answers
12 views

DatabaseExists is not supported by the provider - EFWrapperToolKit

I'm trying to log the EF events. I checked some examples in the web and found a solution using EFTracingProvider nugget. The thing is that an error is coming up when trying to connect to an Oracle ...
1
vote
2answers
70 views

How to save values in a list in ASP MVC 3

I am developing an ASP .Net MVC 3 application using C# and SQL Server 2005. I am using also Entity Framework and Code First Method. I have a Form in a Partial View which the code is : <%@ ...
2
votes
2answers
38 views

Using a model for multiple purposes

I'm new to ASP.NET MVC using Entity Framework and I'm trying to create a simple login system. At the moment I have UserProfile model that I wish to model a login form off of. UserProfile.cs ...
0
votes
1answer
236 views

Exception “The specified named connection… with the EntityClient provider, or not valid.” while loading WPF designer

I'm writing an WPF application using Entity Framework and I have two controls, Window and UserControl which is embedded in Window. UserControl designer works fine, but Window designer returns an ...
1
vote
3answers
76 views

Entity framework foreign key constraint

I'm still getting my head around using EF. I using a code first approach in my project and stumbled upon the following issue. I have the following objects: public class Employee { public int ...
0
votes
0answers
14 views

Entity framework integration testing with sqlite, specified index already exists error when running tests

My integration test project uses sqlite, and this was working a while back but now there seems to be an issue which I cannot figure out. I keep getting a error related to an index, which already ...
37
votes
9answers
29k views

ADO.NET Entity Framework and identity columns

Is the Entity Framework aware of identity columns? I am using SQL Server 2005 Express Edition and have several tables where the primary key is an identity column. when I use these tables to create ...
0
votes
1answer
16 views

Change cell value of selected item in datagrid WPF

The datagrid is bound to a collectionview and the columns are not being auto generated. When the user selects a row in the datagrid, a code is generated. I want to insert this code in the Code column ...
3
votes
2answers
364 views

WPF datagrid does not automatically refresh Entity Framework

I'm new in WPF. Now, I'm writing a project of WPF with Entity Framework. I can add and delete items correctly on my wpf; however, after I add or delete items, my datagrid still didn't refresh. Even I ...

1 2 3 4 5 502