DCS evaluateWhereExpressions

From Catglobe Wiki
Revision as of 10:58, 5 December 2018 by Administrator (talk | contribs) (DCS_evaluateWhereExpressions)
Jump to: navigation, search


DCS_evaluateWhereExpressions

This function is an alias to EvalWhere in DataCacheSpecification class.

Syntax

DCS_evaluateWhereExpressions(expression, DCSRId[, weight[, filter]]);

Arguments

Dictionary expression

number DCSRId

string weight

string filter

Return type

Dictionay

Example

number DCSRId = 15596823;
Dictionary expression = {
	"totalFemail": "count() where true",
	"userIdFemail": "selectColumn (UserId) where true"
	};
string filter = "Q1==2";
DCS_evaluateWhereExpressions(expression, DCSRId, "", filter);
//{"totalFemail": 92, "userIdFemail": {160206350,160206358,160206372,...}}