okay, it helped how it works, --> one question answered --> a new question as result:)
now the critical question.
Why using two method to create string? I don't see the useful difference which let say both are useful to let live both. i mean the result is the same, nearly.
using .Find lets get the completList
.GetPaged(..) lets get a certain part .
well, I got a new question about .getPaged()
as a wannabe good programmer I cut gui and business. gui ask business and get some back (either int or list)
So, with getPaged... I can set the number of items i wanna get. (pageLength)
1. lets say the setted pageLength is below 'totacount' and my method has return VList<...>....
so, how do i get the other items? I haven't found a property including the 'totalcount'
2. lets say method return value int (returning just the maximum value 'totalcount'
in that case i got a full filled list and just return a single number.--> wasting resources.
with what I could get the values step-by-step as long the actual item number is smaller than 'totalcount'
okay, you could say, that full filled list is organized as property of the searching class, so still usefull.
---> in that case: for that do i need thethings in Service.GetPaged(.... int start, int pageLength)
or long story short. How do I get only the first 10 items and also the information the the complete would contain 200 items?
thanks.