Tagged Questions

5
votes
3answers
836 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 …
2
votes
4answers
1k 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 …
1
vote
1answer
280 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 …
1
vote
2answers
456 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
4answers
2k 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 …
0
votes
0answers
130 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' …
0
votes
2answers
128 views

Check if insert(s)s or update(s) was successful in Entity Framework

Hello, In ADO.NET, ExecuteNonQuery() "For UPDATE, INSERT, and DELETE statements, the return value is the number of rows affected by the command" …
0
votes
2answers
87 views

Linq SaveChanges question

Should I bother doing this check to see if the object(s) saved correctly? if (objectContext.SaveChanges() > 0) It should just throw an exception if it didn't, right?
0
votes
2answers
483 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
169 views

c# Adding a new object to an object context returns “error occurred while updating the entries”, duplicate entry for primary key

I'm having a problem trying to add an object to an object context in Entity Framework. Here is the code : //related object ids are retrieved from another context. //since I thought the problem could …
0
votes
1answer
106 views

Asynchronous ObjectContext.SaveChanges() ?

Hi all! I want the SaveChanges of the ObjectContext (Win apps) to SaveChanges asynchronously, will show a marquee (or controllable?) progress bar (this I can easily implement) for the user while he …
0
votes
1answer
67 views

How to have a form data-bound to an object with losing its values on postback

Hi I use ADO.NET Entity-Framework, I have a page that is data-bound to an entity variable in the code file. The hierarchy of the item is Person.Orders I want the user to add/remove orders to this …
0
votes
0answers
273 views

How do I properly handle a PreviewMouseDown event with a MessageBox confirmation?

Earlier I asked how to cancel a WPF TreeViewItem.Selected event. The answerers suggested I instead handle the PreviewMouseDown event before the selection even takes place. That makes sense. I've …
0
votes
1answer
496 views

Adding and Updating with LINQ to Entities

We are using L2E and REST in our project, and while I have been able to retrieve data from the db without issue, I am still not able to update or add new records to the db. I imagine that it's a …