We are using the ServiceStack framework to build internal APIs.
Our API (web service) serves multiple front-end clients very well (iPhone app, web application).
Our business team would also like to query the API service using PowerPivot. Is there an easy way of using PowerPivot to query our internal API.
An example ResponseDto looks as follows:
public class GetTransactionResponse
{
public List<TransactionView> Result { get; set; }
}