How to perform an ODATA expand in LinqPad
问题 I'm using LINQPad to connect to the ODATA services on a local CRM organization and I don't know how to perform "joins" or to traverse relationships using LINQPad. Here is my URL OrganizationData.svc/New_locationSet?$select=new_state_new_location/new_Region$expand=new_state_new_location which works just fine in the browser. Here is what I'm doing in LINQPad: from l in new_locationSet from s in l.new_state_new_location select s.new_Region but I'm getting an error: An expression of type 'LINQPad