The list of fields and/or dynamic aggregation expressions to query from the table. Dynamic aggregation expression allow you to calculate aggregate values against the table on the fly and assign the result to a new field. For example, assuming Quantity and Price are fields on the table, the following aggregate expression:
CopyC#
Sum(Quantity * Price) AS Value
will create a new field called Value in the query results which will contain the result of evaluating this expression. For more information on dynamic aggregation refer to the LiveView documentation.

Namespace: StreamBase.LiveView.API
Assembly: StreamBase.LiveView.API (in StreamBase.LiveView.API.dll) Version: 2.2.8.5956 (2.2.8.5956)

Syntax

         
 C#  Visual Basic  Visual C++ 
public IList<string> FieldExpressions { get; set; }
Public Property FieldExpressions As IList(Of String)
	Get
	Set
public:
property IList<String^>^ FieldExpressions {
	IList<String^>^ get ();
	void set (IList<String^>^ value);
}

See Also