Struggling here, many documents I find are CF 1.0 centric and talk of the 2.0 changes to allow generics and typed DS'es on CF 2.0. Well, CF 2.0 has come and gone, and MS still shows these without update.
I am not ready to jump into WCF, and my clients have a lot of older compact framework 2.0 machines. I am fortunate in that these Web services are private and pretty closed.
So, my questions:
1) Are typed datasets or generics supported using vb.net CF 2.0? As I read they are not, or partially not, being serialized as an array, is this a bad thing?
2) In sending and returning small sets of data, no more than 20 rows, I have some older methods, string arrays, which send a much smaller envelope than a dataset. Is this still a good way to work or is there something better? I am passing 5-6 elements in string array and getting reasonable performance. The downside of these are preprocessing data into string arrays from datareaders or datasets.
3) Using the ds as a vehicle, I find coding is very quick and easy. I am using the getchanges method and sending very few rows at a time. If my envelopes are under 150K am I a criminal for doing it this way?
Thanks!