Ask Learn
Preview
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign inThis browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves an enumerable sequence of the child client objects from a collection that can be the query expression in LINQ syntax.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
'Declaration
Public Function LoadQuery(Of T As ClientObject) ( _
clientObjects As IQueryable(Of T) _
) As IEnumerable(Of T)
'Usage
Dim instance As ClientRuntimeContext
Dim clientObjects As IQueryable(Of T)
Dim returnValue As IEnumerable(Of T)
returnValue = instance.LoadQuery(clientObjects)
public IEnumerable<T> LoadQuery<T>(
IQueryable<T> clientObjects
)
where T : ClientObject
clientObjects
Type: System.Linq.IQueryable<T>
The class that implements the IQueryable interface that represents the client objects from a collection.
Type: System.Collections.Generic.IEnumerable<T>
The enumerable sequence of client objects.
This method retrieves an enumerable sequence of child client objects from a collection; specifically, the collection can be the query expression in LINQ syntax. The retrieved client objects are stored in the return value.
Ask Learn is an AI assistant that can answer questions, clarify concepts, and define terms using trusted Microsoft documentation.
Please sign in to use Ask Learn.
Sign in