SharePoint Asked on February 2, 2021
I have to get all the field (column) values in an array from a SharePoint list. Right now I am looping through all the items in the list and creating an array. But it is very inefficient if I have large number of items.
What would be the most efficient way to get all the field (column) values in an array from SharePoint List?
Update 1: The array values are further used in the code and are not displayed to end user.
Even I will suggest using DataTable than array
SPWeb oWebsite = SPContext.Current.Web;
SPList oList = oWebsite.Lists["List_Name"];
SPListItemCollection collListItems = oList.Items;
//DataTable oDataTable = collListItems.GetDataTable();
DataGrid1.DataSource = collListItems.GetDataTable();
DataGrid1.DataBind();
you can either use grid or the commented line if want in datatable format for further functionality.
Or
You can get list items collection in a generic list.
List<SPListItem> listItems = list.GetItems(query).Cast<SPListItem>().ToList();
Answered by Gaurravs on February 2, 2021
1 Asked on October 26, 2021 by ushka
1 Asked on October 26, 2021 by abdelkader_ak
1 Asked on October 25, 2021 by joy-fernandes
0 Asked on October 25, 2021
1 Asked on October 25, 2021 by milind
2 Asked on October 25, 2021 by ariser
calendar content approval flow power automate sharepoint online
0 Asked on October 25, 2021 by dfx413
1 Asked on October 25, 2021
azure ad groups microsoft teams office 365 groups sharepoint online
2 Asked on October 25, 2021
document library highlighted content web part modern experience sharepoint online spfx
1 Asked on October 25, 2021 by prathyush-p
1 Asked on October 25, 2021 by dimuser
2 Asked on October 25, 2021 by sk5991
1 Asked on October 25, 2021
1 Asked on October 25, 2021 by misbah
modern experience script editor webpart sharepoint online web part
1 Asked on October 25, 2021 by johnrambo
react react webpart sharepoint online spfx webparts web part
2 Asked on October 25, 2021
2 Asked on October 25, 2021 by adarsh-awasthi
javascript jquery ajax sharepoint online sharepoint rest api sharepoint server
1 Asked on October 25, 2021 by mikedev
enterprise search search search results sharepoint search sharepoint server
0 Asked on October 25, 2021 by sharepointadmin
1 Asked on October 25, 2021
Get help from others!
Recent Answers
Recent Questions
© 2023 AnswerBun.com. All rights reserved. Sites we Love: PCI Database, UKBizDB, Menu Kuliner, Sharing RPP