I have a working service that takes 8-10 inbound params and populates via stored procedure. The stored procedure is fairly complex.
I’m wondering if I can implement a second service that uses the first one (with caching ideally), but adds AutoQuery features (paging, orderby, where clause). Maybe with PocoDataSource?
It looks like a ServiceSource would handle everything I need, with the exception of caching (on the original service). Am I understanding that correctly?