You want to only get changed data in a dataset which of the below is the best way ?

 Posted by Muhilan on 12/7/2009 | Category: ASP.NET Interview questions | Views: 18767
Select from following answers:
  1. productInfo.GetChanges(DataRowState.Detached);
  2. productChanges = productInfo.GetChanges();
  3. productChanges.Merge(productInfo, true);
  4. productChanges.Merge(productInfo, false);
  5. All Above

Show Correct Answer


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response