When I create a test project, these 2 properties always return the same value. Is this something to be relied upon or is there an underlying differenece? I always ahve used the ..Rows.Count version but one of our Jr. guys has been using BO.Count and I'd hate to be bitten by this sometime in the future. Below is a sample of what I am referring to.
Thanks!
Dim a As New FSS.BO.Lookup.ActivityTypea.Fill()
Dim i As Int32 = a.Count (== 5) Dim i2 As Int32 = a.CurrentDataTable.Rows.Count (==5)