TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Roldan Fritz
NA
1
904
IQueryable returns 3693 items but inserts 1000 to dropdown
Jun 23 2014 9:40 AM
Hi all,
I am querying SharePoint to retrieve all the lists of accounts. I can see that I have 3693 account items when I query the results. However when I convert this into a lists or insert this as DataSource of a dropdown field, it only takes the first 1000 items of the results.
Code preview
...
var organisations = from d ....... ;
Debug.WriteLine("Results returned.. " + organisations.Count());//3693
Debug.WriteLine("Results converted to Lists " + organisations.ToList().Count()); //1000
dropdown.DataSource = organisations; OR dropdown.DataSource = organisations.ToList();
//only displays the first 1000
... code continues
Am I inserting the data wrong? Help!
Regards,
Roldan
Reply
Answers (
0
)
ComboBox variable types error
how to read binary data from database more than 32kb