In C# & .NET, can one create a DataView
that includes only a proper subset of the DataColumn
s of a given DataTable
?
Well I can't see any reason for "wanting" to do that... Remember, a DataView is just a list of pointers to the rows in the original table, and there is obviously no way to remove columns from the the original table... at least not without affecting every other function utilizing that table... Just only use the columns you want...