Note This article is the second part of the Template Syntax series of articles. For first part, please visit Template Syntax - Part 1 of 2. Outputting Expression Results You can output expression results to your reports using expression tags. An expression tag denotes a placeholder for an expression result within a template. While building a report, the corresponding expression is evaluated, and this placeholder is replaced with the formatted result of the expression....<<foreach [c in ds.Contracts]>><<[c.Clients.Name]>> <<[c.Managers...Name]>> <<[c.Price]>><</foreach>> Total: <<[ds.Contracts.Sum(c => c...