Is there a way to represent summary rows with OData?
问题 I'm trying to tack on additional information to the list of items returned from an ODataController 's method. The use case is summary rows. So we basically want to return the rows of the report and then also additional info with totals, sub-totals, etc. So, basically starting with this method: public PageResult<MyReportLine> Get(ODataQueryOptions odataQueryOptions) I tried wrapping MyReportLine in MyReport public class MyReport { IEnumerable<MyReportLine> _myReportLines; MySummaryRow