I am trying to run through a dataset returned from a database query to gather a list of tracking numbers for a sales order that has shipped outside of GP. Once I get the dataset, I'm having trouble adding the tracking numbers to a List<SalesTrackingNumber>() since the result in the dataset is a string value and SalesTrackingNumber is a type that won't allow casting. Has anyone found a way to do this that wouldn't mind helping me the right direction to go in?
I'm using C# and SQL Server 2008R2. The end result would be gathering up the tracking numbers and making a call to UpdateSalesOrder in the web service to feed GP the trackings numbers.
*This post is locked for comments