在LINQ表达式中检测到循环

时间:2015-08-12 06:49:41

标签: c# linq

对于我在LINQ中的以下查询,我在执行时遇到错误。

  

在LINQ表达式中检测到循环

    var data = db.hdr.Where(m => m.created_by == created_id && m.client_id == client_id)
.OrderBy(m => m.request_id).AsQueryable();

    data = from d in db.dtls
           from h in data
           where (d.request_id == h.request_id && d.employee_id == "005")
           select h;

我在第二行data =from....

收到错误

我无法解决问题。请帮帮我。

0 个答案:

没有答案