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...