This topic has not yet been rated - Rate this topic

DataServiceContext.LoadProperty<T> Method (Object, String, DataServiceQueryContinuation<T>)

Loads the next page of related entities from the data service by using the supplied generic query continuation object.

Namespace:  System.Data.Services.Client
Assembly:  System.Data.Services.Client (in System.Data.Services.Client.dll)
public QueryOperationResponse<T> LoadProperty<T>(
	Object entity,
	string propertyName,
	DataServiceQueryContinuation<T> continuation
)

Type Parameters

T

Element type of collection to load.

Parameters

entity
Type: System.Object

The entity that contains the property to load.

propertyName
Type: System.String

The name of the property of the specified entity to load.

continuation
Type: System.Data.Services.Client.DataServiceQueryContinuation<T>

A DataServiceQueryContinuation<T> object that represents the next page of related entities to load from the data service.

Return Value

Type: System.Data.Services.Client.QueryOperationResponse<T>
The response that contains the next page of related entity data.
ExceptionCondition
InvalidOperationException

When entity is in the Detached or Added state.

When entity is in an Unchanged or Modified state, the related entities are loaded as objects in an Unchanged state, with links also in Unchanged state.

When entity is in a Deleted state, the related entities are loaded as objects in an Unchanged state, with links that are in the Deleted state.

.NET Framework

Supported in: 4.5, 4

.NET Framework Client Profile

Supported in: 4

Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.