SharePoint - insert list item into a folder using LINQ
- by Itay Shakury
Hello,
I am trying to use the new LINQ notation to add an item into a folder.
I can add the item to the root of the list with:
dataContext.MyList.InsertOnSubmit(mynewObject);
But I can't find a way to make it go inside a folder.
I am trying to avoid instanciating SPWeb, or SPSite objects.
Thanks,
Itay,