[This is preliminary documentation and is subject to change.]

Retrieves a scrollable SqlCeResultSet based on the provided query.

Namespace:  CWR.MSCRM.Mobile.Client.BL
Assembly:  CWR.MSCRM.Mobile.Client.BL (in CWR.MSCRM.Mobile.Client.BL.dll)
Version: 4.0.0.7

Syntax

C#
public virtual SqlCeResultSet GetEntitiesResultSet(
	QueryExpression query,
	bool checkOnline
)
Visual Basic (Declaration)
Public Overridable Function GetEntitiesResultSet ( _
	query As QueryExpression, _
	checkOnline As Boolean _
) As SqlCeResultSet

Parameters

query
Type: QueryExpression
CRM QueryExpression object defining the query you want to retrieve.
checkOnline
Type: System..::.Boolean
If set to true then check online.

Return Value

Scrollable SqlCeResultSet containing the requested records.

Remarks

Remark 1: This overload doesn't use the paging parameter because the SqlCeResultSet provides direct streaming access to the underlying table. If you need paging using this method, then you need to implement it in the calling code.

Remark 2: This overload doesn't return fields of type ActivityParty. ActivityParty fields are fields that represent a list of people involved in an activity, e.g. requiredattendee, optionalattendee or resource.

See Also