Strongly typed datasets vs. weakly typed datasets
问题 What is meant by strongly typed datasets in .Net? Can anybody explain with a clear and brief example? And also, what is the difference between strongly typed and weakly typed datasets? 回答1: Strongly Typed Datasets are generated on the basis of a Db Schema. They consists of classes derived form DataSet, DataTable and DataRow. Db Columns become correctly typed properties of the TableRow derived class. An Untyped Dataset simply means the direct use of Dataset, not of a descendant. All column