如何在LinqPad中执行ODATA扩展

时间:2012-06-28 19:42:30

标签: dynamics-crm-2011 odata linqpad

我正在使用LINQPad连接到本地CRM组织上的ODATA服务,我不知道如何使用LINQPad执行“连接”或遍历关系。

这是我的网址

OrganizationData.svc/New_locationSet?$select=new_state_new_location/new_Region$expand=new_state_new_location

在浏览器中运行正常。这是我在LINQPad中所做的:

from l in new_locationSet
from s in l.new_state_new_location
select s.new_Region

但是我收到了一个错误:

An expression of type 'LINQPad.User.New_state' is not allowed in a subsequent from clause in a query expression with source type 'System.Data.Services.Client.DataServiceQuery<LINQPad.User.New_location>'.  Type inference failed in the call to 'SelectMany'.

有什么想法吗?我发现LINQPad OData文档非常缺乏......

1 个答案:

答案 0 :(得分:7)

您只需要预测要扩展的内容,例如:

from p in Products
select new {p.Name, CategoryName = p.Category.Name}

Products.Select(p => new { p.Name, CategoryName = p.Category.Name})

将产生

http://services.odata.org/(S(readwrite))/OData/OData.svc/Products()?$expand=Category&$select=Name,Category/Name

在LinqPad的“请求日志”选项卡中。