我们试图使用JsonServiceClient手动构建自动查询请求。该代码是对于大多数操作很简单,但我没有看到过滤器的应用方式: var client = new JsonServiceClient('https://my-app.azurewebsites.net');
var req = new dto.something();
req.pageSize = 10;
req.skip =
我试图更改自动查询使用或(它是搜索框搜索许多领域)上的几个字段。尽管根据它应该的文档,这似乎不起作用。 public class PropertyGet : QueryDb<DomainModel.Property>
{
[QueryDbField(Term=QueryTerm.Or)]
public string NameContains { get; set; }
ServiceStack的AutoQuery Viewer Plugin允许您使用AutoQuery元数据属性修饰自动查询。我使用AutoQuery中现有的元数据服务为前端和显示搜索查询(类似于现有的自动查询管理功能) 如何向AutoQueryViewerAttribute扩展/添加其他属性,以使它们在自动查询元数据服务? 电流自动查询的属性列表可供选择: public class AutoQue
在ServiceStack中使用SwaggerFeature插件,我可以使用ApiMember属性注释DTO的属性。 实施例: [Route("/swagger/{Name}", "POST"]
public class MyRequestDto
{
[ApiMember(Name="Name", Description = "Name Description",
Par