The savechanges tag has no wiki summary.
0
votes
0answers
34 views
Save HTML DOM to Server
I'm trying to develop a site where one can enter into an editor mode (with the following javascript) and change the DOM.
document.body.contentEditable = "true";
document.designMode = ...
0
votes
0answers
31 views
EDM SaveChanges() don't refresh view
I have a table named Commandes and a view vCommandesForDataGridView (Commandes + calculated fields based on Commandes).
The solution contain a WinFormApplication project and a ClassLibrary project ...
0
votes
1answer
32 views
Insertion multiple records in the same objectContext
I'm having some trouble when I try to insert data using the same objectContext.
My problem is, the order that the Entity read my code is not the order that I "Add" it.
Example:
EntityAB has ...
0
votes
0answers
82 views
savechanges() saving one entity and not other
A weird situation has struck me this code was running successfully two days back, but i dont know why its not running as before now :
public static void ChangeStatus(int sessionID, int? ...
0
votes
0answers
95 views
How to update/save database table in VB? Access Database/VisualStudio 2012
I have a problem with Visual Studio and my access database.
I have a DataGridView to see if changes are applied to the database.
I have managed to add and to delete rows from database but when I ...
0
votes
2answers
130 views
Entity framework savechanges() not working EF5, .Net4
I have the following code to update some inventory values...
private static void UpdateInventory(int prodId, int qty)
{
using (var context = new uStore7_1Entities())
{
...
0
votes
0answers
32 views
SQL Server 2008 SaveChanges always wrong if it wrongs before
I insert some data into SQL Server using linq SaveChanges. If it wrongs once, the next time I use SaveChanges, it always be wrong, why? (sorry, my English is poor)
foreach (Message message in ...
1
vote
2answers
29 views
method timeout instead of waiting
It would appear that the savechanges method on breeze waits indefinitely when calling to or waiting for the server. Is there a way of getting it to time out? I am calling save change with ...
2
votes
1answer
58 views
Cant see changes in database after SaveChanges() called entity framework
I have a table Device with only one column UID nvarchar(128) and here is my entity:
[Table( Name="Device" )]
public class Device
{
[Key]
public string UID { get; set; }
}
When I trying to ...
5
votes
2answers
123 views
Saving in entity framework
I have read this article and still misunderstanding key moments. Don't we need call
_context.SaveChanges()
in every Delete/Update/... operations?
If I change property of any entity does ...
0
votes
1answer
342 views
Entity Framework new transaction is not allowed because there are other threads running in the session, multi thread save
I'm tryng to save on a DB the log of a multi thread processo but I'm getting the following error: new transaction is not allowed because there are other threads running in the session.
in each tread ...
1
vote
1answer
81 views
SaveChanges on Entity Framework 3.5 is saving Unchanged entities (duplicate them on database)
I'm using .net 3.5 and Entity Framework 3.5 also (cannot upgrade to a recent version).
When I use EF to save a new entity on the database, all the entity references are duplicated even with state ...
0
votes
2answers
53 views
Are EF data changes ONLY persisted when SaveChanges() is called?
I'm adding a "WhatIf" switch (inspired by the Powershell -WhatIf switch) to my app, that just simulates data processing, without persisting any actual data changes back to the EF storage.
The way I ...
0
votes
1answer
174 views
DbContext.SaveChanges Fails to Save Valid Entities
I'm using EF 5 with Code First POCO.
Here is the repository's SaveChanges implementation:
public virtual List<DbEntityValidationResult> SaveChanges()
{
var errors = new ...
0
votes
1answer
122 views
how to save data into plist in ios after setting its dynamic value?
<plist version="1.0">
<dict>
<key>InfoValue</key>
<string>false</string>
<key>AudioValue</key>
...
0
votes
1answer
67 views
Unable to grab related parent entity object & add it to the ObjectContext
I am currently having difficulty tracking and adding a parent-entity object to my context after successfully adding its related child.
I have two SQL tables mapped to my entities that are related by ...
8
votes
1answer
509 views
Overriding SaveChanges in Entity Framework 5 Code First to replicate the behavior of an old legacy library
Our company ships a suite of various applications that manipulate data in a database. Each application has its specific business logic, but all applications share a common subset of business rules. ...
1
vote
1answer
89 views
C# EF SaveChanges dosen't save last value
I have bindingList bound to TextBoxes. When I enter new value in textboxes and press save button the value from last Textbox dosen't save in database. But when I pressed Tab key before save button ...
0
votes
1answer
77 views
Updating one-to-many relationships without SaveChanges
When a call is made to the SaveChanges() method of an context, the relationships on the other side of the change are automatically updated.
For instance if I had a teacher mrX with a virtual ...
0
votes
1answer
180 views
Ember js save data before window unload
I want to save user progress, before user leaves a page. What is the best way to do this in Ember.js (v 1.0.0-pre.4)?
In pure JQuery it will look like:
$(window).unload(function() {
...
0
votes
1answer
97 views
db.SaveChange(); Exception - value connot be null
In WPF application I want save data to databese.
db.Pytanias.Add(pyt); //all parameters in pyt has a value
db.SaveChanges();
When is saving to database I get an exception:
...
0
votes
3answers
134 views
How to save a server generated complex object tree with entities that are not yet exsisting in the database?
In my spa I need to send a complex object tree to the client and let the user fill in his data, before the entities can be saved in the database. So the entities do not exist in the database at that ...
0
votes
2answers
60 views
Entity framework - adding new object
I've entity type called 'Question', when i create new instance of it and add it to entity set 'Questions' (using AddObject()), than call SaveChanges() method on context, all works fine. But when i ...
0
votes
1answer
206 views
Entity Framework SaveChanges(False) fails while using TransactionScope
The question asked on following link has a great answer under that as well but my problem starts after that.
Entity Framework - Using Transactions or SaveChanges(false) and AcceptAllChanges()?
I ...
0
votes
1answer
375 views
DbContext.SaveChanges() causing DbUpdateException in loop
I have a process that creates an object that is responsible for inserting into header /detail records. If I run the code to insert into the table on its own, every thing runs fine. However, when I ...
0
votes
0answers
23 views
xcode 4: How to save user changes from more tab bar [duplicate]
Possible Duplicate:
How to: Save order of tabs when customizing tabs in UITabBarController
I want to make it so that when on a tab bar application, if someone changes the order of the ...
1
vote
1answer
2k views
Entity Framework 5 Unit of Work pattern - where should I call SaveChanges?
Apologies, in advance, if this seems like a duplicate question. This question was the closest I could find, but it doesn't really solve the issues I am facing.
I'm using Entity Framework 5 in an ...
0
votes
1answer
134 views
Umbraco CMS can't save template
I'v set up a new umbraco project in visual studio, with any preinstalled templates, when i am trying to add new masterpage i can't save it, i can edit it in visual studio but i cant save any change in ...
0
votes
0answers
27 views
Can't save the changed view using matrix
I use canvas to change a picture, the onDraw - method looks like this:
protected void onDraw(Canvas canvas) {
canvas.drawColor(0xFFCCCCCC);
canvas.save();
canvas.concat(matrix);
...
0
votes
0answers
48 views
model with dropdownlist does not get entirely updated on edit
i have a simple model
public class Obras
{
public int ObrasId { get; set; }
[Required]
[DisplayName("Responsável")]
public string responsavel { get; set; }
[Required]
...
0
votes
0answers
38 views
saving as “Web Page, HTML Only” loses all changes (added nodes, changed CONTENTEDITABLE fields)
Lacking access to a server at my workplace, I have built a web page for users to build care plans for patients. The page has lots of JavaScrpt to permit users to add text in CONTENTEDITABLE fields, ...
0
votes
0answers
39 views
iOS: scrollView for text not saving
Am using Xcode 4.5, targeting iOS5 and above. Using JSON. Odd thing, this was working just a few weeks ago. Have added delegation for a fonts popover and now it is not saving any keystrokes.
I have a ...
1
vote
0answers
250 views
Entity Framework SaveChanges “hangs” the program
My code is pretty simple:
Context.AddObject("EntitiesSetName", newObjectName);
Context.SaveChanges();
It worked fine, but just one time – the first one. That time, I interrupted my program by ...
1
vote
1answer
158 views
Custom atomic UPDATE commands inside SaveChanges()
For various reasons I need to be able to do several custom SQL UPDATE commands when I call SaveChanges on a DbContext. I want this to happen atomically so either both the regular SaveChanges and the ...
1
vote
2answers
895 views
Entity Framework 4 SaveChanges Method not saving to database
I'm trying to use Entity Framework 4 for a small database application I'm writing to keep record of downloaded files. When running the application I set a break point after the tableName.Add() method, ...
1
vote
3answers
103 views
How to add new object to database?
I want to add a new book to my database, but it doesn't work.
class Program
{
static void Main(string[] args)
{
Knigi_DataEntities entities = new Knigi_DataEntities();
...
0
votes
3answers
381 views
access id of added entity before SaveChanges() is called
i'm using EF 4.3.1, I've overridden the SaveChanges() on the context so that I can get a list of the objects and their states and create entries in my audit log table. I need to store the id of the ...
0
votes
0answers
70 views
How to save multiple form values with the same function
I have this function to save a value of a registration form in case someone submits it without success. It works, but I want to save multiple input values, so not just the input with id email...
How ...
0
votes
1answer
126 views
How to detect if an Entity added to DbContext? [duplicate]
Possible Duplicate:
DBContext Added/Attached Event?
I'm using a custom ID-Generating strategy in EF 5. I override the SaveChanges method to detect added entities and set them IDs. But the ...
3
votes
1answer
3k views
Entity Framework 5 Using SaveChanges to add audit log
Seems straight forward override SaveChanges in EF to add an audit logger. See the ApplyAuditLogging method to set the audit properties (created, createdby, updated, updatedby) below.
public ...
0
votes
1answer
127 views
Saving changes from yield return via Entity Framework
I am facing a problem getting Entity Framework to save results from yield return properly. To illustrate the problem I created 2 sets of methods, one returns an entity and the other returns an ...
0
votes
0answers
169 views
Cannot convert type 'System.Data.Entity.Infrastructure.DbEntityEntry' to 'foo'
I'm trying to attach a Removed/Deleted entity entry from an item of base.ChangeTracker.Entries() in the SaveChanges() method of EntityFramework 5.
The code looks something like this:
...
0
votes
0answers
948 views
replacing text in a file using batch script
I am using the following code to replace a string in a file. But it wont actually repalce the string and save it.
@echo off
REM -- Prepare the Command Processor --
SETLOCAL ENABLEEXTENSIONS
SETLOCAL ...
0
votes
1answer
68 views
NSDocument based Mac app - suppress strange Save Changes prompt
I started out developing this Mac app from an NSDocument-based app template, thinking that a report in it should become a rich text format document.
Now, app specs have changed, the app is finished, ...
3
votes
3answers
2k views
Can't SaveChanges with Entity Framework in ASP.Net MVC 3 project
Studying asp.net mvc 3 + EF code-first. I am new to both. My example is trivial, but I still can't make it work. Missing something simple and obvious...
I've got a class:
public class Product
{
...
2
votes
1answer
607 views
ObjectStateManager error while adding second data (Entity Framework)
When I adding more than one consecutive data an error occurred in SaveChanges() method.
EXCEPTION
The changes to the database were committed successfully, but an error occurred while updating the ...
0
votes
1answer
41 views
How do i save options changed by user interaction?
I've asked a question like this before but the answers did not really help. If the user has changed the settings how do i save it so when the application is killed the changes are still saved. I have ...
0
votes
2answers
149 views
how to save changes in wpf events lines
the problem is the wpf not save changes Only after the end of the event
//code
private void button1_Click(object sender, RoutedEventArgs e)
{
for (int ii = 0; ii <= 5; ii++)
{
...
1
vote
0answers
77 views
Self-entity relationship in Entity framework - Error while saving
I have an Employee entity, which is having following properties:
EmployeeId
EmployeeName
EmployeeManagerId
EmployeeManager
All above fields can be mapped with a table in database, except, ...
0
votes
1answer
44 views
How to update Db from passed in entity object
I have a list of OrderDetail records that I have added, updated and deleted items from. I need to be able to pass this entity object to another layer for saving changes.
How can I do this? Do I need ...


