I am new to SharePoint 2010, can you please help me to create a SharePoint list and basic CRUD operations?
Tell me more
×
SharePoint Stack Exchange is a question and answer site for
SharePoint enthusiasts. It's 100% free, no registration required.
|
To create a list:
To create, update and delete list items:
To get an item: SPListItem itm = myList.GetItemById( itemId ); You can also use SPQuery to get a list item or many items. A long time ago I wrote about how to perform some of these basic tasks in some blog posts. |
|||
|
|
Very much depend on how you want to create that list.
If it's as an end-user the
For more options see Create or delete a list |
|||
|
|