So, I am working on my first PCL application, and I have a couple of questions............
1. This application needs to work directly with a web service (SOAP).
2. The application will be receiving System.Data datatables from the service, as well as sending them back.
I figured out that PCL cannot use a service reference. I found that I just needed to generate the proxy class and add that to my project. No problem there.
My problem is when I found out that I couldn't use System.Data with a PCL project. Basically, my calls to the web service would accept a System.Data.DataTable in return. I cannot figure out how I can do that using SQLite. Or, if someone has a better suggestion, please do let me know. I cannot change the web service, by the way.
Thanks in advance.
Brad