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.
Checks to see if the operation should return partial data.
Namespace: Microsoft.BusinessData.Runtime
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public ReadOnly Property AllowPartialData As Boolean
Get
'Usage
Dim instance As OperationMode
Dim value As Boolean
value = instance.AllowPartialData
public bool AllowPartialData { get; }
Property Value
Type: System.Boolean
true if it should return partial data; otherwise, false.
Remarks
The following example illustrates the use of AllowPartialData. A Finder populates the cache with some of the fields of the external item. A SpecificFinder is then called, which requires more fields. If AllowPartialData is set to true, the entry is returned directly from the cache. If AllowPartialData is set to false, a call is made to the external system instance to retrieve the remaining field values.