Hi all,
I was looking at retrieving parameters from a number of remote elements, and was just wondering if using the class library like below was the most efficient way:
It seems to be working efficiently, but we will eventually have this on 60+ elements at a time.
Is this fesabile/the most efficient way to do this?
Hi Alex
I don't see nothing wrong with your logic to retrieve parameters from external elements. The best way is to definitely use the class library which you are already doing. One thing you can do is to check for nulls after your dms calls to not continue with the next part if nothing was returned. Also maybe in the GetData method there is an option to pass a filter to only request the columns you need so letting the server handle the filtering rather than you doing that after requesting the entire table.