Questions tagged [servicestack-autoquery]

40 questions
1
vote
0 answers

Hyperlink to a secondary query in the results of an AutoQuery UI using ServiceStack

Firstly, I am amazed at how simple and performant ServiceStack is. Can't believe I've gone without sing this for so long. I'm especially loving the AutoQuery and Admin feature, but for the life of me, I'm struggling to find documentation on how to…
Craig D
  • 487
  • 1
  • 5
  • 17
1
vote
1 answer

ServiceStack - Autoquery & Swapping Client Templates

Using ServiceStack's Autoquery I have a simple Request DTO defined (example below). I would like to swap templates (Layouts) to use a different Razor layout (as per the SS templates swap documentation here)? Example of Request…
Mark
  • 2,175
  • 20
  • 23
1
vote
1 answer

ServiceStack - extending AutoQuery Metadata with

Using the SwaggerFeature plugin in ServiceStack, I can annotate the properties of a DTO using the ApiMember attribute. Example: [Route("/swagger/{Name}", "POST"] public class MyRequestDto { [ApiMember(Name="Name", Description = "Name…
Mark
  • 2,175
  • 20
  • 23
1
vote
1 answer

ServiceStack - extending AutoQuery Metadata Viewer

ServiceStack's AutoQuery Viewer Plugin allows you to decorate the AutoQueries using AutoQuery metadata attributes. I use the existing Metadata service in AutoQuery to power a front-end and display search queries (similar to the existing AutoQuery…
Mark
  • 2,175
  • 20
  • 23
1
vote
1 answer

ServiceStack OrmLite AutoQuery Filter

Should the following work: ?OpensContains=Something by querying the Name column on the db? It doesn't and I'm not sure why not? [QueryDbField(Field = "Name")] public string OpensContains { get; set; } ?NameContains=Something does work, the…
1
vote
1 answer

ServiceStack AutoQuery Send Filter's Manually

We are trying to use the JsonServiceClient to manually construct autoquery requests. The code is pretty simple for most operations but I don't see how filters are applied: var client = new JsonServiceClient('https://my-app.azurewebsites.net'); var…
1
vote
2 answers

Transform Request to Autoquery friendly

We are working with a 3rd party grid (telerik kendo) that has paging/sorting/filtering built in. It will send the requests in a certain way when making the GET call and I'm trying to determine if there is a way to translate these requests to…
1
vote
1 answer

ServiceStack - Saving AutoQuery Requests

Regarding ServiceStack's AutoQuery, I would like to enable the user to [Save] AutoQuery requests (& provide a name for the Request) - see screenshot view all saved request & re-run a given request. How do I implement this using ServiceStack?
Mark
  • 2,175
  • 20
  • 23
1
vote
2 answers

List of apps/products using ServiceStack?

ServiceStack authors/community: you have done impressive job! Outside of SO, I was wondering if there is an up to date list of products/apps using ServiceStack? Or maybe ServiceStack app/architectural patterns for larger apps (with MQ) ? I looked…
Sbham
  • 199
  • 7
0
votes
0 answers

Servicestack orm lite does not deserialize neasted json structures

I have a pgsql view which returns list of records. One field of record is represented as json and deserialised to property List ClassAItems. However ClassAItems has also List ClassBItems and deserialisation doesnt not work at this…
marcinn
  • 1,879
  • 2
  • 22
  • 46
1 2
3