DataSet vs DataView

using dataview we can just create the view of the table and perform any updations or deletions it wont be affected on the database table.

whare as dataset is used for disconnected architecture and we can store any number of tables in the dataset form different data sources using data adapters

Comments

Popular posts from this blog

Singleton pattern implementation in C#