LiveLinkQuery
Consume data from the connected backend syste
The LiveLinkQuery class provides methods to execute data queries against the backend system. It is used for the same purposes as the good, old database SQL statements.
LiveLinkQuery class provides methods to select, insert, update and delete business objects from the connected backed system. The following types of backend systems are available:
- Application Area (e.g. data from backend apps)
- Connected system ( Microsoft Dynamics 365 FO, Microsoft Dynamics 365 Business Central and others)
The developer of the application can use the LiveLinkQuery class without specifying connectivity parameters. The connectivity parameters will be automatically extracted from the application user role.
Properties
Methods
Constructor
App Types
There are no properties
Don't instantiate directly instances of the LiveLinkQuery class.
LiveLinkQuery instances are created through a call to the liveLinkQuery() method of the BusinessObjectBase assessor.
See also BusinessObjectBase.liveLinkQuery() method
import { Customer } from '$dms-bo';
...
const query = Customer.liveLinkQuery();
📳
🌐
Description
Parameters
Returns
Example
fields method sets the list of the fields to be returned by the executeSelect method of LiveLinkQuery. It provides functionality similar to the SELECT clause in a sql statement.
- fields: Array<string> array containing the name of the business object members to be returned by executeSelect method.
DbQuery instance, allowing methods chaining.
import {DbQuery} from '@dms'
import {Customer} from '@dms-bo'
const query = Customer.liveLinkQuery();
//define only 3 fields to be returned
query.fields(['Id','Name','City']);
//method chaining - e.g. calling several method on a single line
query.fields(['Id','Name','City']).filter("Id='123'");
Description
Parameters
Returns
Example
Allows the developer to define a filter to be applied, when using executeSelect() method. The filter expects the same syntax as WHERE clause in sql statement.
- filterExpression: string the filter to be applied during a call to executeSelect method
DbQuery instance, allowing method chaining.
import {DbQuery} from '@dms'
import {Customer} from '@dms-bo'
const query = Customer.liveLinkQuery();
//equal
query.filter("Id=1123'");
//greater than
query.filter("Revenue > 6000");
//more complex filter with parentess
query.filter("((Revenue > 6000 or Revenue=0) and (City='Sofia'))");
const result = await query.executeSelect();
//method chaining - e.g. calling several method on a single line
const result2 = await query.fields(['Id','Name','City','Revenue']).filter("City='Dubai'and Revenue>1234").executeSelect();
Description
Parameters
Returns
Example
Allows the developer to limit the number of the records returned by the query.
- max - maximum number of records to be returned by the executeSelect() method
DbQuery instance, allowing method chaining.
import {DbQuery} from '@dms'
import {Customer} from '@dms-bo'
const query = Customer.liveLinkQuery();
//limit to 100 records
query.max(100);
const result = await query.executeSelect();
Description
Parameters
Returns
Example
Allows the developer to define the page number to be returned in page indexing scenarios. This make sense only if the limit() method was used.
- index - the page index number to be returned by the executeSelect() method
DbQuery instance, allowing method chaining.
import {DbQuery} from '@dms'
import {Customer} from '@dms-bo'
const query = Customer.liveLinkQuery();
//limit to 100 records
query.max(100);
//select second page , e.g. records from 100th to 199th
query.page(2);
const result = await query.executeSelect();
Description
Parameters
Returns
Example
Allows the developer to define a query group expression to be used. This is the same as in the GROUP BY clause in Sql
- groupExpression - the actual group expression to be applied during the execution of the executeSelect() method
DbQuery instance, allowing method chaining.
import {DbQuery} from '@dms'
import {Customer} from '@dms-bo'
const query = Customer.liveLinkQuery();
query.group('City, Country');
const result = await query.executeSelect();
//method chaining - e.g. calling several method on a single line
const result2 = await query.group('City, Country').executeSelect();
Description
Parameters
Returns
Example
Allows the developer to define a aggregate expression to be used. This is the same as in aggregates(max, count, min , avg, ...) in Sql Note that the aggregate() method can NOT be used together with fields() method - e.g. the developer must either fields() or aggregate() methods
- aggregateExpression - the actual aggregate expression to be applied during the execution of the executeSelect() method
DbQuery instance, allowing method chaining.
import {DbQuery} from '@dms'
import {Customer} from '@dms-bo'
const query = Customer.liveLinkQuery();
query.aggregate('max(Revenue) as revenue, count(*) as cnt');
const result = await query.executeSelect();
//method chaining - e.g. calling several method on a single line
const result2 = await query.group('City, Country').aggregate('max(Revenue) as revenue, count(*) as cnt').executeSelect();
Description
Parameters
Returns
Example
Allows the developer to define a sort expression to be used. This is the same as in ORDER BY clause in Sql
- sortExpression - the actual sorting expression to be applied during the execution of the executeSelect() method
DbQuery instance, allowing method chaining.
import {DbQuery} from '@dms'
import {Customer} from '@dms-bo'
const query = Customer.liveLinkQuery();
query.sort('Revenue asc');
const result = await query.executeSelect();
//method chaining - e.g. calling several method on a single line
const result2 = await query.fields(['City','Country']).sort('Revenue asc').executeSelect();
Description
executeSelect method performs the actual query execution and returns array of objects, which extends class BusinessObjectBase.
Last modified 3yr ago