Using LINQ to query SharePoint
Have you heard, there is this thing called LINQ, it’s all the rage these days. ;) I think everyone has at least one post about LINQ on their blog, so here is my contribution, with a SharePoint twist of course.
Using LINQ to query and display all list titles of a given SharePoint site.
Microsoft.SharePoint.SPSite _site = new Microsoft.SharePoint.SPSite("http://spdev");
[Read More]