ADO.Net Questions - Part 2

  1. How can we save all data from DataSet?

    Dataset has AcceptChanges method which commits all the changes since last time AcceptChanges has been executed.

  2. Read more

    ADO.Net Questions - Part 1

    1. What are the .Net  namespaces with the data functionality classes?

      System.Data This namespace contains the basic objects used for accessing and storing relational data, such as DataSet, DataTable, and DataRelation. Each of these is independent of the type of data source and the type of the connection.

      Read more