The text of this article is not in this database — only its details are. The old site it was published on is gone, but the Internet Archive kept a copy: Using LINQ in SharePoint 2010: Part 2
Join the conversation! Your thoughts help the community grow.
Sign in to leave a comment
It is the same account you read, post and publish with — and you will come straight back to this page.

Humayun Kabir MamunPosted Jan 24, 2016, 10:55 PM
Nice...
Raymund MacaalayPosted Mar 2, 2011, 4:50 PM
Great article but I have a question on InsertOnSubmit. What if you have a Lookup field on Item List which is for example ItemType that looks up on ItemType List how would I do this now? Item newItem=new Item () { Title="Test3" ItemType=????????? }; // Insert the new list item to the list listItems.InsertOnSubmit(newItem); db.SubmitChanges(); as Item will be an ItemTypeItem type.