D
Daniel Walzenbach
Hi,
I have the following scenario:
myDataSet.Tables("tblCustomer").Rows.Count = 4
This is quite fine as the table contains 4 rows. However
myDataSet.Tables("tblCustomer").DefaultView.Count = 1
is not exactly what I expected it to be (I thought the result should be 4). Can anybody explain this behavior to me?
Thanks in advance
Daniel
I have the following scenario:
myDataSet.Tables("tblCustomer").Rows.Count = 4
This is quite fine as the table contains 4 rows. However
myDataSet.Tables("tblCustomer").DefaultView.Count = 1
is not exactly what I expected it to be (I thought the result should be 4). Can anybody explain this behavior to me?
Thanks in advance
Daniel