What is the difference betweeen these?
I am trying to programatically (on a NON sharepoint server computer) get sharepoint lists (I am an admin of these lists) and convert them into SQL Tables.
So far I have been able to open the lists but not get the datatable. I keep getting code snippets some using SharePointclientObj.List and others using SPList. The SPList isnt found with my assembly references?
using Microsoft.SharePoint;
using SharePointclientObj = Microsoft.SharePoint.Client;
and sadly enough the code that I am finding to do what I want is using the SPList. Can I either get code to convert to a dataTable using the SharePointclientObj.List or an explination on how to get the SPList to connect properly?