Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
2answers
3k views

When should I call SaveChanges() when creating 1000's of Entity Framework objects? (like during an import)

I am running an import that will have 1000's of records on each run. Just looking for some confirmation on my assumptions: Which of these makes the most sense: Run SaveChanges() every ...
7
votes
2answers
3k views

What is the best way to use the .SaveChanges() method in ADO.Net Data Services?

Does anyone have some good information on the usage of the .SaveChanges() method? I am experiencing a variety of issues when attempting to use the .SaveChanges() method on my data context object. I ...
5
votes
6answers
5k views

How can I cancel a user's WPF TreeView click?

I've got a WPF application with a Treeview control. When the user clicks a node on the tree, other TextBox, ComboBox, etc. controls on the page are populated with appropriate values. The user can ...
3
votes
1answer
48 views

Does every RIA query creates a different EF Object context?

I am using EF4/RIA combo in a Silverlight application. I have multiple service methods in my DomainService. One of the methods fetches some data from the database and then modifies the objects' ...
3
votes
1answer
45 views

how do I implement a “Do I Need To Save” mechanism for a data container?

Assume there is the BindingList<Person{Name, age}> class and a PersonManager class that hosts the list. In the application, every control is bount to the person list, in order to manipulate it ...
3
votes
2answers
381 views

ASP.NET MVC 3 - Entity Framework SaveChanges() on Update - Needed to ignore opcional columns

When I update a table from a Form through Autogenerated EF, if I remove some data-columns from the view form because I don't want to be editable, that columns are updated with null value, how can ...
3
votes
3answers
1k views

Entity Framework and MVC 3: The relationship could not be changed because one or more of the foreign-key properties is non-nullable

I have been trying to use one View for updating an object and all its child collections (based on one-to-many relationships in an SQL Server database with an Entity Framework model). It was suggested ...
3
votes
2answers
91 views

Is there a recommended approach to handle saving data in response to within-site navigation without onunload event?

Preamble to scope my question: I have a web app (or site, this is an internal LAN site) that uses jQuery and AJAX extensively to dynamically load the content section of the UI in the browser. A user ...
3
votes
2answers
172 views

What is the best way to determine if Object has been changed?

I made some "save" bean functionality in my Java Web Application (JSF1.2, RichFaces). It is using JAXB to turn it into an XML string and then it is stored in the database. If the user loads this back, ...
3
votes
5answers
7k views

Unable to save Entity Framework Inherited types

I have implemented some table-per-type inheritance in my data model (basically have a "BaseEntity" type with all the base information for my items and a "Employer" type that inherits from the ...
2
votes
1answer
259 views

DbContext SaveChanges() - Detecting updated entities

I have overridden the SaveChanges() method in the Entity Framework 4.1 DbContext class. My override looks like this: public override int SaveChanges() { IEnumerable<DbEntityEntry> ...
2
votes
1answer
206 views

Refresh DataSource after SaveChange does not work

I add data in an ObjectSet and did SaveChanges on ObjectContext. But the new data does not shown in the DataGrid! Code: bsWork.DataSource = Program.EC.Addresses; ... Address newAdr = new Address(); ...
2
votes
2answers
502 views

Entity framework SaveChanges() in a different DbContext inserting unnecessary rows

my supermarket model contains a StockItem class and an Alert class which contains a StockItem field: public class StockItem { public int ID { get; set; } public string Name { get; set; } ...
2
votes
2answers
357 views

Assigning ids to entities with EntityFramework 4

I'd like to implement "default" Id generation support for my entities. When saving the entity, I'd like EntityFramework to only generate the id value for the Entity if it's not already set. If the ID ...
2
votes
2answers
907 views

ObjectContext.SaveChanges() violates primary key, throws UpdateException?

Paraphrasing from this MSDN documentation ... An INSERT statement is generated by the Entity Framework and executed on the data source when SaveChanges is called on the ObjectContext. ...
2
votes
1answer
696 views

.Net Entity Framework SaveChanges is adding without add method

I'm new to the entity framework and I'm really confused about how savechanges works. There's probably a lot of code in my example which could be improved, but here's the problem I'm having. The user ...
2
votes
1answer
2k views

Handling System Shutdown in WPF

How can I override WndProc in WPF? When my window close, I try to check if the file i'm using was modified, if so, I have to promt the user for "Do you want to save changes?" message, then close the ...
2
votes
2answers
5k views

How to rollback a transaction in Entity Framework

string[] usersToAdd = new string[] { "asd", "asdert", "gasdff6" }; using (Entities context = new Entities()) { foreach (string user in usersToAdd) { context.AddToUsers(new User { Name ...
1
vote
1answer
54 views

Context.SaveChanges() is not working

The following is my code. When I see table data after executing of this code, it still is blank. Any ideas to make the following code work would be appreciated. Dim dbcontext As New Model1Container ...
1
vote
2answers
44 views

Implementation of Unsaved Changes Detection

It seems like three ways to approach detecting unsaved changes in a text/image/data file might be to: Update a boolean flag every time the user makes a change or saves, which would result in a lot ...
1
vote
2answers
462 views

EF 4.1, POCO: Reference type properties are not updated in case AutoDetectChanges=false

EF 4.1, POCO: I turned off AutoDetectChanges (Configuration.AutoDetectChangesEnabled = false) to speed up data update. Then I run Add or Attach with entity state changed to EntityState.Modified. All ...
1
vote
1answer
89 views

How cancel SaveChanges

I make first SaveChanges and flies exception (UpdateException). And I make second SaveChanges and againe fliyng first erorr. What to do about it bool isUpdate = false; var resource = new Resource() { ...
1
vote
1answer
595 views

Entity Framework SaveChanges() first call is very slow

I appreciate that this issue has been raised a couple of times before, but I can't find a definitive answer (maybe there isn't one!). Anyway the title tells it all really. Create a new context, add a ...
1
vote
2answers
164 views

SaveChanges doesn't save changes

I have an application that loads all the data as expected using EF, however, when it comes to saving, I can't get it to work at all. I've started off simple, by just using a value from a combobox to ...
1
vote
1answer
130 views

Excel 2010 - Why do Workbooks With Macros Ask to Save Changes

Often when, working with workbooks that contain VBA macros, I can save the workbook and then immediately attempt to close it. Excel then asks if I want to save changes. What causes this behavior?
1
vote
0answers
163 views

Passing ObjectContext EF 4.0

I have two classes Queries and ContactRepository. public static class Queries { public static Contact GetContactByName(CEntities context, string name) { return ...
1
vote
2answers
367 views

EntityFramework show entities before saving changes

Entity Framework ObjectSet with its method ToList shows just saved entities. That means, when I call context.AddToCustomers(myNewCust); and then (without calling SaveChanges) ...
1
vote
1answer
275 views

SaveChanges() doesn't work?

I have the following code: User user = new User(); user.Name = "ABC"; user.Age = "12"; _context.AddToUser(user); _context.SaveChanges(); Meta meta = new Meta(); meta.UserID = user.ID; meta.Info = ...
1
vote
4answers
219 views

Find an element by id and replace its contents with php

I want to use PHP to search through the contents of a file for an element with a specific id, replace its contents, then save my changes to the file. I'm able to load in the HTML, and save it back out ...
1
vote
1answer
574 views

Entity Framework SaveChanges issue

I am doing some testing with EF and i was trying to get a hook on the ObjectContext.SavingChanges. Everything works when i add objects directly to their set in the context. But when i add them through ...
1
vote
2answers
587 views

How to save a canvas drawing?

I have this finger-painting app and I want my users may save what they draw and come back later and keep drawing. What's the lighter way to do this?
1
vote
0answers
574 views

Entity Framework persistence problem giving “The ObjectStateManager does not contain an ObjectStateEntry with a reference to an object of type..”

In the database I have have: PK CountryID int notnull PK ServiceID int notnull PK TaskID int notnull PK TaskItemID int notnull PK CorrespondentID int notnull PK PreviousTask int notnull ...
1
vote
1answer
319 views

Entity Framework - Initial Save is slow

We are implementing a system using EF4 and WPF. We are noticing an issue with the initial saving of data: when the initial SaveChanges is run there is a 4 to 6 second delay when context.SaveChanges() ...
1
vote
1answer
126 views

Saving new indicies, triangles and normals after WPF 3D transform

I have a 3D model which is lying flat currently, I wish for it to be rotated 90 degrees around the X axis. I have no problem doing this with the transforms. But to my knowledge all the transforms are ...
1
vote
1answer
822 views

Why would Entity Framework be able to retrieve entities but not save/update/delete them?

I have a WPF app with a local .MDF file on which I created an Entity Framework class model. Retrieving entities from the database works fine: //get entities using (var context = new ...
1
vote
1answer
570 views

Entity Framework - New entities with new children cannot be added with savechanges

I am creating an object called "letter" which has multiple "recipients" added to it. when savechages is called on the context i get this error. "Entities in 'EchoEntities.LetterRecipients' ...
1
vote
5answers
4k views

Entity Framework won't SaveChanges on new entity with two-level relationship

I'm building an ASP.NET MVC site using the ADO.NET Entity Framework. I have an entity model that includes these entities, associated by foreign keys: Report(ID, Date, Heading, Report_Type_ID, etc.) ...
0
votes
1answer
46 views

save file's changes?

I have a file on my sdcard. When I normally open and change it with “officesuite”, I can save changes. When I open it in my app as follow, “officesuite” displays it but it cannot save changes and in ...
0
votes
2answers
88 views

Is EF4 ObjectContext.SaveChanges thread safe?

I am accessing my database via Entity Framework 4. I have a server that listens on a port, awaiting some messages. When a message comes, it is translated into a table row and it should be inserted ...
0
votes
1answer
86 views

What is the equivalent for Hibenate.saveOrUpdate() in entity framework

In entity framework you have to write a lot of code for saving or updating a single entity: using (DataContext context = new DataContext()) { context.Task.Attach(task); if ...
0
votes
1answer
65 views

How do I save a NavigationProperty on an Entity from a different context?

I have two database tables, one for Events and one for RecurrenceRules. Events have a FK that points to a RecurrenceRuleID. All I want to do is Save an Event AND it's Recurrence rule from a new ...
0
votes
0answers
128 views

Entity Framework NullReferenceException after SaveChanges

i have a problem with saving changes to my database. I have a simple database with 3 tables which are all related. i have a listbox with all my projects: public void fillProjekteListBox() { ...
0
votes
1answer
139 views

Entity FrameWork - Exception on SaveChanges

I have this code saving a simple Entity: ExecutionEngineEntities db = new ExecutionEngineEntities(); Task task = new Task(); task.Message = "Test"; task.Result = "Test"; task.Name = "Test"; ...
0
votes
0answers
38 views

Save changes to all tables in DAL layer

I have a WPF master detail form with two DataGrids. Customers is the master and Addresses is the details. I want to be able to make a change to 1 Customer record and one or more of it's related ...
0
votes
2answers
156 views

Entity framework doesn't save data entries in database

At first I should mention that this problem only occurs in windows forms applications and the same program in web mode for example with MVC3 works perfect. Some days ago I wrote a very simple windows ...
0
votes
0answers
71 views

Ado.net not properly saving changes to context model

I'm trying to create a simple example of a "code first" database model using the ADO.NET framework. I have set up a SQLExpress database with mixed authentication. My connection to the db is using the ...
0
votes
1answer
151 views

Linq to Entities: add an object without save changes

Let's suppose I have the following code: TEModule teModule = Context.TEModules.Where(module => module.EnumValue.Equals(text.ModuleName)).FirstOrDefault(); if (teModule == null) { teModule = ...
0
votes
1answer
60 views

ASP.net InnerException: add record to DB

Been through my textbook, but I'm still having problems with catching an inner exception as I try to add a record to the database. What is the proper syntax for catching an InnerException in my ...
0
votes
0answers
143 views

SaveChanges in EntityFramework With Inherited Objects/Tables

This is my first question, so hopefully I start off on the right foot. I am processing reports on a client/institution basis and adding the entries to a SQL Server CE 4.0 Database. I have an ...
0
votes
1answer
210 views

EF 4.1 ComException on DbContext.SaveChanges()

I'm using EF 4.1. Whenever an error occurs during the execution of a DbContext operation like SaveChanges() I consistently receive a rather cryptic error message: ...

1 2