ADO.Net Interview Questions and Answers
<< Previous Question Next Question >>
 Question: 553 Page Views: 

How do you save changes to Entities object?



Posted By: Avi Date: 15 October 2010 08:42:48 AM
 Answer:

obj.SaveChanges();


Posted By: avibtech


Date: 15 October 2010 08:42:48 AM
Post a better Answer if you have
 
(Will show your Gravatar icon)  
  Country flag

Loading
Enter the text as shown in the image 4XddHv
Related Questions
ADO.Net : Does Recordset exists in ADO.NET?

Does Recordset exists in ADO.NET?

No
Category: ADO.Net Date: 10/13/2010 7:15:48 PM
ADO.Net : How can you fill data set with multiple tables?

How can you fill data set with multiple tables?

Provide two or more queries separated by ; to SqlDataAdapter and use it to fill dataset.
Category: ADO.Net Date: 10/13/2010 5:21:47 PM
ADO.Net : Can you edit XML data using XPathNavigator created from XMLDocument class?
ADO.Net : What class should you use XslTransform or XslCompiledTransform for XSL transformations?

What class should you use XslTransform or XslCompiledTransform for XSL transformations?

XslTransform is newer, faster and have more options and should be used
Category: ADO.Net Date: 10/13/2010 4:29:48 PM
ADO.Net : How do you use LINQ to SQL?

How do you use LINQ to SQL?

DataContext db = new DataContext(“connection string”); Table<Orders> Orders = db.GetTable<O....
Category: ADO.Net Date: 10/13/2010 2:34:47 PM