0
votes
1answer
24 views

Iterating through entity framework models from another related project

I have just started working with .Net and I have created an Entity Framework Model and an associated context for the password reset functionality of a website and I have created this in a class ...
1
vote
4answers
73 views

EF Fault when retrieving data: wrong table name in SQL

I have a simple edmx with 2 tables. The tables are related by a single Navigation Property. (1 to many). When I run my code I get an Exception: "Invalid Object Name dbo.Enquiries" There is no ...
0
votes
0answers
145 views

using asp.net “membership” for mysql database throws Keyword not supported. Parameter name: metadata error

I am trying to use Membership class for my asp.net mvc3 application with Entity framework to use Mysql database. I am using EF DbContext. Following some threads i have changed the ...
0
votes
0answers
154 views

CRUD not working when Data Context Class = Add name variable in web.config

Unsuccessful: Add Controller: Data context class: MusicStoreEntities (MvcMusicStore.Models) Web.config connectionStrings add name= MusicStoreEntities ... With the following error message: ...
0
votes
1answer
86 views

How to setup this query using DbContext

I have two tables in SQL server for customers and their addresses. CREATE TABLE Customers ( ID INT NOT NULL IDENTITY(1,1), LastName VARCHAR(50) NOT NULL, FirstName ...
2
votes
1answer
162 views

Entity framework multiple contexts for logging

I've seen a fair few articles/posts that recommend not having more than one context per request when using EF. Is it valid to have a second context for logging purposes such as 'user x did y', ...
0
votes
1answer
1k views

EntityFramework: Retrieve data with a condition on two different context

I'm importing data between two different database(which have not the same context). So I've two different context. The goal is to import some data of the context A to the context B. Data in the ...
0
votes
5answers
445 views

ASP.NET MVC Controller recommendation for LINQ DataContext instantiation place

How should I instantiate the datacontext (entity fw) in a MVC Controller: as a property in class as a field in class as a variable in Action as abstract away your DbContext with the Repository ...
2
votes
1answer
318 views

MVC 4 late-bound DataContext entity LINQ reference

Long time listener, first time caller. I'm probably taking the wrong approach to this, so any help would be fantastic. I'm using C#, MVC 4, Code First, Entity Framework 4.3, & Razor. I am ...
1
vote
1answer
230 views

Saving changes very slow via Datacontext

I am working on MVC3 .NET Project with Entity framework and SQL Azure Database. When i try to save multiple records at once in a table it takes several minutes to finish the operation! I use the ...
1
vote
1answer
542 views

.net mvc codefirst multiple SiteDataContextInitializer one database

I'm trying to create modules to reuse. For example, a Membership project that creates and handles user operations (login, register, etc), then build it, and use the dll inside other projects. So, in ...
9
votes
1answer
2k views

How to make Entity Framework Data Context Readonly

I need to expose an Entity Framework Data Context to 3rd party plugins. The purpose is to allow these plugins to fetch data only and not to let them issue inserts, updates or deletes or any other ...
0
votes
2answers
229 views

Entity Framework overwrites data when 2 two people save data simultaneously

In a function I pass a list of related values and loop over them to save changes in the database. All works well until 2 or more people use the same page to update different entities .Then only ...
1
vote
1answer
420 views

Entity Framework 4.1: how to work with per call life time data context?

According to this post, I am using a data context per call, so in each method of my WCF service, I use a using block to create a new data context. But I have some doubts in the form to work in this ...
1
vote
1answer
726 views

Entity framework query for MVC

Im very newbie to the .net world... I'm going across some tutorials for MVC, where in I could see all the tutorials are writing the Model classes then creating the database(may be used for tutorial ...
0
votes
1answer
269 views

Entity framework: life of datacontext?

I am reading about which is the recommended life for the data context, but I still have some doubts about the best option. In general, the conclusion that I see is that in desktop applications the ...
0
votes
2answers
1k views

EntityFramework Context implemented wrong?

I am working for EF 4.2 code first and have been getting a lot of random context connection issues, and wondered if you could cast an eye over this implementation and then slap my wrists for doing it ...
0
votes
1answer
42 views

What is the best way to move sql-linked methods of entities from a data context to entitiy class?

I like EntityFramework. Usually I create a service class (layout) to put there the logic of interaction with a database. It looks like this: public class UserService { MyDbContext _context; ...
5
votes
2answers
3k views

Differences between .CreateObjectSet<T>, .Set<T>, and .CreateQuery<T>?

I am writing a generic repository for entity framework and am confused as to what the difference between these calls are: ObjectContext's .CreateObjectSet<T> ObjectContext's ...
0
votes
1answer
265 views

Generating DataContext from database (Entity Framework)

I've used once an downloadable add-on for entity framework, from the internet or Nu-Get to generate DAL with DataContext and all information by right clicking on the project and selecting "Generate.. ...
0
votes
0answers
44 views

How to remove data base that made by EF code first method?

I made my DB by using entity framework and Code First method , everything is fine and I can easily install my program on target system and work with it. But,when I uninstall the program, it won't ...
2
votes
1answer
115 views

Directly referencing ObjectContexts like in LinqPad

I'm in the process of moving some code from LinqPad to a regular C# VS2010 environment. I noticed that in LinqPad, you can just directly use an ObjectContext (i.e. using the pluralized table name) ...
1
vote
1answer
107 views

EF4 Relationships Not Updating Correctly

Ok, I'm working on a project and was just handed a bug that I'm having a bit of trouble with. The code is written in a "different" manner and I think the way the original developers approached this ...
1
vote
2answers
1k views

Dispose Context in EF Generic Repository

I have the following generic repository: public class EFRepository<TEntity, TContext> : IRepository<TEntity, TContext>, IDisposable where TEntity : class where TContext : ...
2
votes
2answers
324 views

How I keep entity object after DataContext disposed?

I use this style when I get data from database public class User { public static List<User> GetUsers() { List<User> users = new Users(); using ( var context = new ...
1
vote
3answers
1k views

How do you centralize the Entity Framework data context in a web application?

In our application we use the repository pattern to retrieve and persist data from our data storage medium. The medium we opted to use is Entity Framework 4. This seems to be a very clean way to do ...
2
votes
2answers
771 views

.NET REST services, Entity Framework and loose coupling

I'm working on a web application project using ASP.NET MVC3 and database in SQL Server. There is also a mobile application that uses the data from the same database via REST services. Here are some of ...
2
votes
0answers
414 views

ASP.NET MVC 3 child request kicks in before Entity Framework DatabaseInitializer finished creating tables and seeding the db?

i have an asp.net mvc3 application which is using ninject for DI. The app is making use of Entity Framework 4 and a database initializer that also seeds custom data into the db. the database ...
3
votes
3answers
344 views

Can I define eager loading per datacontext instead per query?

Is there a way to define eager loading per entire data context, so I could state something like this -- "when using this data context when loading Customer always load associated City as well"? So, ...
2
votes
1answer
391 views

Calling a custom method in LINQ query

I have a query like this: var q = from u in db.User select new { userId = u.UserId, userName = o.Name, userAvatar = o.AvatarCode ...
0
votes
2answers
313 views

Why Entity Framework V1 hits DB several times with SELECT while entities are already loaded?

Lets say I have a Playlist class with some referenced classes. The playlist entity collection is placed into the data context wrapper: public new IQueryable<Playlist> Playlist { ...
1
vote
0answers
571 views

Detect entity framework datacontext changes for save/cancel enabled

I'd like to detect if my entity framework datacontext has changed (has changes to apply with SaveChanges()) so I can bind it to my Save button IsEnabled. I know there is also CanExecute for my ...
0
votes
1answer
405 views

Not disposing Entity Framework DataContext causes SQL Server memory issues?

I have an ASP.NET MVC app that I am developing, very few users but SQL Server is hogging memory like crazy. I am wondering if it could be due to the Entity Framework. I have been following tutorials ...
6
votes
1answer
1k views

Multiple/Single *.edmx files per database

I have a project that interacts with a database through ADO.net Data Services. The database is large (almost 150 tables with dependencies). The project started a few years ago and there were DataSets ...
3
votes
2answers
690 views

Suppressing TransactionScope enlistment of a readonly EF context?

I have a scenario where I need to open multiple datacontexts which point to different databases. I am only writing to one of the databases though and reading from the others ... so technically the ...
0
votes
2answers
454 views

Linq replace field for a subquery

I have a database containing users and roles. The table Users has a reference to the table roles as each user is bind to a role (one and only one). When I use linq to retrieve the users, the field ...