HOW TO: Get data from large external lists in SharePoint 2010
Published May 01 2019 03:35 PM 504 Views
Microsoft

First published on TECHNET on Mar 05, 2013

This blog post is a contribution from Chanchal Jain, an engineer with the SharePoint Developer Support team.

Recently, I was working on a requirement on how to find items using an identifier in external lists which are very large in terms of the number of items they display.  It’s similar to selecting a record in a table with a WHERE clause.

Just in case you are new to external lists (which is highly unlikely), check this out.

Once the list is created, if you have less than 2000 (default threshold value to throttle records from a database backed BCS model) items, you can use CAML query as you would query a normal list.  It would work the same.  But as soon as you have items more than 2000, CAML query will not return results.

I searched, researched and leveraged resources available to me and came up with the following steps to accomplish this task in hand.

  1. Before performing these steps make sure you have all the configuration done and you are able to see the external list in SharePoint UI with all permissions and that you are able to query the list using CAML.  This will help ensure you have a good working set.
  2. Edit the external content type using SharePoint Designer.
  3. Click Operations Design view to list all the methods/operations defined on the external source.
  4. Click on the existing ReadList operation or create a new one.  The choice is completely at the hands of the designer.  I prefer editing the existing one.
  5. Click Next till you land on the page which says Filter Parameters Configuration .
  6. Click Add Filter Parameter .
  7. Click the link (Click to Add) on the right pane.
  8. In the New Filter textbox, provide a filter name.  E.g., SearchMyID .
  9. Based on the type of the primary key of your external data source, you can select Compare or Wildcard filter types.  I had an integer data type as the primary key of the external data source (SQL database table), so selected Comparison filter type.
  10. Select the operator as Equal for equal comparison and the filter field you want to search on.
  11. Leave rest of the options to their default and hit OK .
  12. Make sure you have a limit filter ( you should have already configured this when creating this operation the first time ) set as default in order to display the list in SharePoint UI.
  13. Click Finish .  Save the external content type and publish it again.

That’s it with respect to configuring the external content type, now comes the part where you use the filter in the code to query external list using CAML.  This approach works equally good in server, client and javascript SharePoint object models.

I’ll skip the part where you create site/web objects and get the list instance.  Here’s a sample CAML query that let’s you query for items in the external content type.

<View>


<Method Name="<The name of the Read List method which we edited to add the Filter>">


<Filter Name="<The name of the Filter>" Value='{0}'/>


</Method>


<Query>


<Where>


<Eq>


<FieldRef Name='<Name of the Filter Field>' />


<Value Type='Number'>{0}</Value>


</Eq>


</Where>


</Query>


<ViewFields>


<FieldRef Name='Field1'/>


<FieldRef Name='Field2'/>


<FieldRef Name='Field3'/>


<FieldRef Name='Field4'/>


<FieldRef Name='Field5'/>


</ViewFields>


</View>





Update the attributes marked with < some text > in the CAML query sample above with the appropriate values.  E.g, <The name of the Read List method which we edited to add the Filter> in the above CAML query in my case is actually ReadList .  Use the String.Format to pass in the filter ID.  That should be it.



This works efficiently on the tests I did against SQL table with more than 25,000 records.



Hope this helps!

Version history
Last update:
‎Sep 01 2020 02:32 PM
Updated by: