Are you able to add this to your ObjectQuery?
.AddColumn(new AggregatedColumn(AggregationType.Sum, " ProductPrice * Count").As("TotalPrice"))
You'll need to also add this using statement to include this:
using CMS.DataEngine;
The other option if this doesn't give you the results you're expecting is to do the math on output in the transformation.