[This is preliminary documentation and is subject to change.]
Retrieves a scrollable SqlCeResultSet based on the provided filters.
Namespace:
CWR.MSCRM.Mobile.Client.BLAssembly: CWR.MSCRM.Mobile.Client.BL (in CWR.MSCRM.Mobile.Client.BL.dll)
Version: 4.0.0.7
Syntax
| C# |
|---|
[ObsoleteAttribute("This method is obsolete, use the overload GetEntitiesResultSet(QueryExpression query, bool checkOnline).")] public virtual SqlCeResultSet GetEntities( ColumnSetBase columns, OrderExpression sortOrder, List<FilterExpression> filters, bool checkOnline ) |
| Visual Basic (Declaration) |
|---|
<ObsoleteAttribute("This method is obsolete, use the overload GetEntitiesResultSet(QueryExpression query, bool checkOnline).")> _ Public Overridable Function GetEntities ( _ columns As ColumnSetBase, _ sortOrder As OrderExpression, _ filters As List(Of FilterExpression), _ checkOnline As Boolean _ ) As SqlCeResultSet |
Parameters
- columns
- Type: ColumnSetBase
The columns you want to retrieve.
- sortOrder
- Type: OrderExpression
The sort order.
- filters
- Type: System.Collections.Generic..::.List<(Of <(FilterExpression>)>)
List of FilterExpression containing the filters you want to apply.
- 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.
