本文介绍了如何Perfom Linq QueryBuilder加入的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,

我希望得到类似的请求(inSQL)

从atable a
中选择a.field1,a.field2,b.field1,c.field1在a.ID == b.aID上加入btable b
在b.cID上加入ctable c == c.ID
哪里...几个参数

现在我不知道参数计数在编译时间。因此我必须使用QueryBuilder或EntitySQL。(这就是我所学到的)。

我没有使用Entity SQL或Querybuilder找到具有这种复杂性的样本。

有没有人知道一些使用连接和许多样本的样本实体SQL和LinqQueryBuilder中的参数?

谢谢


















实体SQL命令只是一个字符串,所以你正确地构建这个字符串。我认为几个循环可以轻松解决您的问题。

BTW您知道吗,连接不是O / R世界中的概念。几乎所有事情都可以使用导航属性和/或子选择来完成。


Hello,

I want to have a request like that(inSQL)

Select a.field1, a.field2, b.field1, c.field1 from atable a
join btable b on a.ID==b.aID
join ctable c on b.cID == c.ID
Where ...several parameters

Now I dont know the Parameter count at compile time. Therefore I have to Use QueryBuilder or EntitySQL.(thats what I learned).

I found no sample with that complexity using Entity SQL or Querybuilder.

Does anyone know some samples using joins and many parameters in Entity SQL and LinqQueryBuilder?

Thanks
David

解决方案


这篇关于如何Perfom Linq QueryBuilder加入的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-21 11:32