无法找到ServiceStack IAutoQuery命名空间?

时间:2015-08-11 02:20:01

标签: servicestack

我正在使用ServiceStack的AutoQuery,但却陷入了困境。我已经放了Plugins.Add(new AutoQueryFeature { MaxLimit = 100});,并尝试添加所有名称空间,但到目前为止还没有运气。感谢。

更新:我正在遵循主要的ServiceInterface,ServiceModel结构。当我将public IAutoQuery AutoQuery { get; set; }放入main时,可以识别它。但不能在ServiceInterface中工作。怎么解决这个问题?

1 个答案:

答案 0 :(得分:0)

所有AutoQuery功能都包含在ServiceStack命名空间中的单个AutoQueryFeature.cs中。

这也是您可以找到IAutoQuery接口(也在ServiceStack命名空间中)的地方。这意味着如果你能找到AutoQueryFeature,你也可以在默认情况下找到IAutoQuery,如果你有构建错误,可能还有其他一些问题,即尝试一个干净的构建,否则你可能您需要重新启动Visual Studio。

AutoQuery功能位于 ServiceStack.Server NuGet包中:

PM> Install-Package ServiceStack.Server