我创建了一个非常简单的.NET 4.0 Web项目,带有WPF客户端。
Web解决方案有一个WCF数据服务,其服务操作返回IQueryable<string>
。
WPF客户端引用该服务并直接使用CreateQuery()
和.Take()
直接调用服务操作。
不幸的是,我收到以下错误消息:
Query options $orderby, $inlinecount, $skip and $top cannot be applied to the requested resource.
如果我使用http://localhost:20789/WcfDataService1.svc/GetStrings()?$top=3
在浏览器中查看该服务,则会收到相同的错误。
有什么想法吗?如果我需要在某个地方上传解决方案,请告诉我。
谢谢!
WcfDataService1.svc.cs:
namespace WPFTestApplication1
{
[System.ServiceModel.ServiceBehavior(IncludeExceptionDetailInFaults = true)]
public class WcfDataService1 : DataService<DummyDataSource>
{
public static void InitializeService(DataServiceConfiguration config)
{
config.SetEntitySetAccessRule("*", EntitySetRights.AllRead);
config.SetServiceOperationAccessRule("*", ServiceOperationRights.All);
config.DataServiceBehavior.MaxProtocolVersion = DataServiceProtocolVersion.V2;
}
[WebGet]
public IQueryable<string> GetStrings()
{
var strings = new string[]
{
"aa",
"bb",
"cc",
"dd",
"ee",
"ff",
"gg",
"hh",
"ii",
"jj",
"kk",
"ll"
};
var queryableStrings = strings.AsQueryable();
return queryableStrings;
}
}
public class DummyEntity
{
public int ID { get; set; }
}
public class DummyDataSource
{
//dummy source, just to have WcfDataService1 working
public IQueryable<DummyEntity> Entities { get; set; }
}
}
MainWindow.xaml.cs:(WPF)
public MainWindow()
{
InitializeComponent();
ServiceReference1.DummyDataSource ds = new ServiceReference1.DummyDataSource(new Uri("http://localhost:20789/WcfDataService1.svc/"));
var strings = ds.CreateQuery<string>("GetStrings").Take(3);
//exception occurs here, on enumeration
foreach (var str in strings)
{
MessageBox.Show(str);
}
}
答案 0 :(得分:4)
WCF数据服务(以及OData)不支持对原始或复杂类型集合的查询操作。服务操作不被视为IQueryable,而是IEnumerable。 您可以向服务操作添加参数,仅返回指定数量的结果。
在规范中它的描述如下: URI列表 - URI13是返回基本类型集合的服务操作。 http://msdn.microsoft.com/en-us/library/dd541212(v=PROT.10).aspx 然后是描述系统查询选项的页面: http://msdn.microsoft.com/en-us/library/dd541320(v=PROT.10).aspx 在底部,该表描述了哪些查询选项可用于哪种uri类型。 URI13只允许使用$ format查询选项。