Linq,OData和WCF:“不支持方法连接”

时间:2013-06-21 13:02:53

标签: c# visual-studio-2010 linq odata

我正在尝试从多个表中恢复和显示数据。我已经完成了这样的多重连接:

var prod = from product in context.PRODUCT
    join islocated in context.ISAUDITEDIN on product.PRODUCT_ID equals islocated.PRODUCT_ID
    join location in context.LOCATION on islocated.LOCATION_ID equals location.LOCATION_ID
    orderby location.LOCATION_ID
    group new
    {
       Location_ID = location.LOCATION_ID,
       Product_ID = product.PRODUCT_ID
    } by location.LOCATION_ID into locat
    select new {
       Location_ID = locat.Key,
       Product = locat
    };

其中context是从Web服务调用的OData。该链接正常工作:当我进行简单的选择时,我能够恢复数据。 然后,我想显示结果中的数据。所以我创建了一个词典:

Dictionary<string,List<ProductModel>> dict = new Dictionary<string,List<ProductModel>>();
foreach (var locat in prod) {
    List<ProdctModel> products = new List<ProductModel>();
    foreach (var p in locat.Product)
    {
        products.Add(new ProductModel(p.Location_ID, p.Product_ID));
    }
    dict.Add(locat.Location_ID.ToString(), products);
}

其中ProductModel是一个类似的简单类:

public class ProdctModel
{
    public int locationID{get; set;}
    public int productID{get; set;}
    public ProdctModel(int location_ID, int product_ID)
    {
        this.locationID = location_ID;
        this.productID = product_ID;
    }
}

但是当我跑步时,我有以下几点:

“the method join is not supported”
Ligne 131 :            Dictionary<string,List<ProdctModel>> dict = new Dictionary<string,List<ProdctModel>>();
Ligne 132 :            foreach (var locat in prod) {

如何解决?我通过使用方法.Expand()而不是join来看到了一些事情,但我不知道如何使用它:你能帮助我吗?

谢谢!

1 个答案:

答案 0 :(得分:0)

我从未使用linq的odata,但我假设您无法加入不同的远程资源。尝试先将对象放入内存,然后进行连接:

var products = context.PRODUCT.ToList();
var islocateds = context.ISAUDITEDIN.ToList();
var locations = context.LOCATION.ToList();


var prod = from product in products
                       join islocated in islocateds on product.PRODUCT_ID equals islocated.PRODUCT_ID
                       join location in locations on islocated.LOCATION_ID equals location.LOCATION_ID
                       orderby location.LOCATION_ID
                       group new
                       {
                           Location_ID = location.LOCATION_ID,
                           Product_ID = product.PRODUCT_ID
                       } by location.LOCATION_ID into locat
                       select new {
                           Location_ID = locat.Key,
                           Product = locat
                       };

请记住,这将下载所有3个表。

EDIT 此外,您在创建字典时获得异常的原因是“prod”varialble是IEnumerable-它只在您执行“foreach”或类似的操作时执行请求。