I’ve just been playing around with the REST handler and frankly I love it. 0 lines of code and my data is accessible via HTTP? Got to love that. Anyway, the only thing I’m not sure of is whether or not I can access data from more than one table with a REST query via the REST handler. I have header records and data records with a one to many relationship but I’d like to retrieve them as one big splurge of XML. Is there a way I can specify a join via REST without creating views or similar in my DB?
Share
Unfortunately you’ll have to use a View for this – running joins in a URL doesn’t scale too well 🙂