0
votes
0answers
9 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 ...
2
votes
0answers
36 views

Entity Framework Code First: SaveChanges is not atomic

I have the following very simple unit test that reproduces a case where DbContext.SaveChanges is not atomic. By not atomic I mean that the committed data can be read before all the commit was ...
0
votes
0answers
17 views

DbContext detect when related collection entities added / removed

I have two ListViews. The first one displays all Parent entities (db.Parents.Local) and the second one should display all Parent.Children from the current item of the first ListView's ...
1
vote
1answer
31 views

Using Query Builder Methods against DbContext

I would like to use the "Query Builder Methods" on my DbContext like following: using (var context = new MyDbContext()) { var query = context.MyEntities.Where("Id = @id", new ...
1
vote
1answer
23 views

Getting POCO classes in DbContext Generator

Are the classes generated by DbContext Generator in EF4.1 considered as POCO and persistence ignorant? If so, why am I getting an error: "The entity or complex type '' cannot be constructed in a ...
3
votes
3answers
48 views

DbContext discard changes without disposing

I have an desktop client application that uses modal windows to set properties for hierarchical objects. Since this is a client application and access to the DbContext is not threaded, I use a ...
0
votes
0answers
26 views

Error when using Entity Framework 5 DbContext and ObjectContext in the same project

I am creating a Generic Repository for using on both DbContext and ObjectContext. Then, first I added an EF DbContext for test database and wrote the unit test for using it with DbContext, all ...
0
votes
1answer
30 views

EF: How to enclose context object in a using statement?

Let's say I have the following classes Customer.cs, a context OfficeContext.cs, and a repository OfficeRepository.cs. Knowing that the context use a connection object, so it's advised to enclose it in ...
0
votes
1answer
67 views

Entity Framework DbContext dynamic instatiation with custom Connection String

Migrating from ObjectContext to DbContext code-generation, I realized that context class generated (which inherits from DbContext) has no constructor that receives connectionString neither ...
0
votes
1answer
17 views

Dynamic DbContext Generation

I need to write a web site content management system that makes use of dynamic Entity Framework DbContext generation. As an input I get a custom data types declaration (in xml) that my C# code knows ...
0
votes
1answer
51 views

Disposing entity framework dbcontext in singleton class (StructureMap)

In my application i am using StructureMap with EntityFramework. Well, my ioc config looks like : x.For<IDbContext>().Use(c => new DbContext(AppSettings.ConnectionString)); ...
0
votes
2answers
52 views

Recovering after exception when using a single dbcontext

I am using entity framework to persist data in a N-tier Wpf application. My dbcontext is shared amongst all repositories and is never disposed. When I persist data I mark an object as modifed and try ...
0
votes
1answer
66 views

EF 5 Code First One to Many Navigation Property Null Until Context is Refreshed

I've seen this question asked a few times but nothing solves my problem. I've created the most simple version I can: public class Order { public int OrderId { get; set; } public virtual ...
1
vote
1answer
100 views

How to refer to Entity Framework DbContext from MVC business objects?

I'm starting a new ASP.NET MVC project. In my last project, one of the biggest code smells was how I passed around the Entity Framework DbContext, stored it in HttpContext.Current, called ...
0
votes
2answers
39 views

dbcontext and reseting elements in memory

I am trying to write some unit tests for some open source code. one of the tests will test that only the minimal number of records have been loaded to memory (ie if someone were to call: ...
0
votes
0answers
49 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 ...
0
votes
1answer
46 views

The context cannot be used while the model is being created

I'm getting a problem with my entity framework usage and think it could be because I'm using my DB context incorrectly. Every now and then I'm seeing error messages in my log stating: "The context ...
1
vote
1answer
29 views

Is it wise to dispose of my DBContext object before page render?

I am using DBContext extensivly in my asp.net web site project. What I typically do is I have an instance of the dbcontext that is available to the page class and I instantiate that on page load and ...
1
vote
0answers
81 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 ...
0
votes
1answer
67 views

How to tell if I use ObjectContext API or DbContext API?

I've got two projects with different database models (though the same Entity Framework Version 5.0.0). Their queries look like the following: Project 1: if (_db.Entry(customer).State == ...
1
vote
1answer
61 views

unexpected GetType() result for entity entry

While I iterating through ObjectStateEntries I expected [t] variable name will be MY_ENTITY foreach (ObjectStateEntry entry in context.ObjectStateManager.GetObjectStateEntries( ...
1
vote
1answer
53 views

MiniProfiler with EF5 CodeFirst SimpleMembership and Specify database name

I am relatively new to MVC and EF so please bare with me. I have an MVC 4 web application with EF 5 CodeFirst (DBContext) with migrations. I am using SimpleMembership which is tied in through EF 5. ...
0
votes
1answer
42 views

mvc dbcontext not working on Azure

I'm creating a processor class and running inside worker role. and inside the processor i create the reporsitory to do CRUD operation to my DB. I have 2 repositories, product and productsize, ...
0
votes
1answer
51 views

DbContext API Ignore for each entity

Please Help! :( I’m trying to use CodeFirst EF. The issue is it's loading 50+ tables for each domain context (DbContext). The ignore is working if I pass the strong name class so the compiler knows ...
0
votes
1answer
79 views

Loading preexisting navigation properties of new disconnected entities

I have a new disconnected POCO (in my case from aspnet mvc modelbinder). public class OfflineEntry { public virtual int Id { get; set; } public virtual Category Category { get; set; } ...
0
votes
0answers
71 views

EF 5.0.0 Code First DbContext : “Multiplicity constraint violated” error on AddRange

When I try to select a single domaUrl and add a new List of selfUrls, failure on DBContext.SaveChange(). Multiplicity constraint violated. The role 'DomainUrl_SelfUrls_Source' of the relationship ...
2
votes
1answer
76 views

Many domain models sharing one data context in EF 5

I recently, out of ignorance and lack of time, merged the domain models (POCO entity classes) from several projects into one 'DataModel' project, because I didn't want to duplicate dedicated ...
0
votes
1answer
77 views

DbContext constructor with connString causes problems with EF Migrations and EF Powertools

I would like to pass a connection string to the constructor of DbContext. The way to do this has been answered here: Pass connection string to code-first DbContext (code if you don't like to click) ...
1
vote
1answer
142 views

Problems with DbContext in Class Project

Background: I have a Web API project and a Class Library project in the same solution that share the same Model classes. Both projects share the same database and both use DbContext to read/write ...
1
vote
1answer
77 views

Entity framework exceptions

I'm having this thought on my mind for quite some time and i still can not find any answer. My DbContext is handled by an UnitOfWork class. So i have one place where savechanges occur and i am ...
1
vote
1answer
43 views

Navigation properties to the same table

I have the folling model in my project (EF5, DBContext, database first): Customer InvoiceAddress -> Addresses (table) DeliveryAddress -> Addresses (table) So I'm having 2 foreign keys to ...
0
votes
1answer
77 views

OdataModelConventionBuilder does not understand DbContext generated model

I am currently working with WebApi OData on a project and have run into a very frustrating problem. I am using an Entity Framework database-fist model using the EF5 DbContext setup as is the default ...
0
votes
0answers
55 views

Single dbContext Vs multiple dbContexts

I divided a large scale app into many different Bounded Contexts and generated BC specific entities in seperate projects through T4. For example, ProjectA contain entities A,B,C and the ProjectB ...
0
votes
2answers
105 views

Entity Framework and context dispose

When should one call DbContext.dispose() with entity framework? Is this imaginary method bad? public static string GetName(string userId) { var context = new DomainDbContext(); var ...
1
vote
2answers
201 views

How to have Entity Framework navigation property query filter in database by default?

the dbcontext api seems to set navigation properties to ICollections (for the * ends of associations). The normal way to get queryable objects (like if you wanted a count) seems to be int count = ...
0
votes
2answers
49 views

Controling and managing DbContext

for now I have this context namespace Dafoor_MVC.Models { public class DafoorDBContext : DbContext { public DbSet<Department> departments { get; set; } public DbSet<Course> ...
1
vote
2answers
141 views

Database Context and asynchronous functions in MVC 4 / EF 5

I did not find similar questions/answers for my purpose. In few Actions of my Controllers (MVC 4/ EF 5 application) I have functions for updating of database, but these functions are not affect on ...
0
votes
0answers
62 views

changing dbcontext not working with connection string

I'm having problem in reading the entities from my datacontext after changing the connection string. The error shown as below: The model backing the 'MpsDataContext' context has changed since the ...
1
vote
0answers
190 views

Short lived DbContext in WPF application reasonable?

In his book on DbContext, @RowanMiller shows how to use the DbSet.Local property to avoid 1.) unnecessary roundtrips to the database and 2.) passing around collections (created with e.g. ToList()) in ...
0
votes
2answers
371 views

In Visual Studio 2012, when you add an ADO.NET Entity Data Model (*.edmx)?

In Visual Studio 2012, when you add an ADO.NET Entity Data Model (*.edmx), it includes the T4 templates for the context and model classes as sub-items of the EDMX file. For example, if you add ...
0
votes
1answer
73 views

EF 5.0 Code First dbContext Remove Child

We are testing with a simple Category, Product example. When we use integer for our keys everything works fine. However, we need to use GUID keys. This also works fine until we try to delete a ...
-3
votes
2answers
78 views

c# DbContext needs 20seconds

When i start may console program and initialized my DbContext class my program waits every time 20 seconds. without the dbContext class all working fine. Anyone know why? Here someCode public class ...
0
votes
0answers
77 views

How force dbcontext to refresh the deleted items in database?

Is there a way to force the EF DbContext to correctly refresh ? 1) I remove an Entity with ID key='foo' from dbcontext 2) Call the SaveChanges() method 3) create a new Entity with the ID key='foo', ...
0
votes
1answer
20 views

Modified Entity Workspace is ignored when generating SQL

I have an Entity Model (EDMX) file and EF 4.3.1. I am trying to make a run-time modification to the EDMX (change the store:Schema of the tables/entitySets used in generating the query). I am using ...
0
votes
1answer
84 views

Is DBSet required for direct access?

I'm pretty sure I know the answer already, but I need it confirmed by others. The question concerns the use of DbSet in Entity Framework: Code First. (Using C#) Let's use these small classes as an ...
0
votes
1answer
45 views

dbcontext throwAmbiguousMatchException

i try to serialize a class into xml. after the serialization , i would like to update the statusid. I'm able to find the first order and alter the statusId , when goes to the 2nd orderid,here is where ...
4
votes
3answers
289 views

Entity Framework Code First ignoring connection string, using IIS instead

I have a web app that I've created using Entity Framework Code First. In setting it up I have managed to match my DB connection string to my DBContext by specifying the full namespace and class of the ...
2
votes
1answer
62 views

DBContext custom validations

Relatively new to DBContext and trying to write custom validations in DBContext without implementing the IValidatableObject interface or ValidateEntity override. e.g. For a Department entity that ...
0
votes
1answer
616 views

How can i get filename from input type “file” in ASP.NET MVC Project?

I'm new to ASP.NET and i'd be so grateful if someone could help. I have my file input: <form action="NewProject.cshtml" method="post" enctype="multipart/form-data"> <fieldset> ...
0
votes
2answers
163 views

DbContext is agonizingly slow after bulk operations

It seems as if the DbContext in the EntityFramework keeps getting slower the more operations (add, delete, modify, querying) you execute on it. Calling periodically SaveChanges() after a few ...

1 2 3 4 5 7