开发者

In what locations can a subquery be used?

开发者 https://www.devze.com 2023-04-05 17:15 出处:网络
In the following code I mark locations within a query where to my understanding a subquery 开发者_开发问答can be used:

In the following code I mark locations within a query where to my understanding a subquery 开发者_开发问答can be used:

from   c1 in subquery
from   c2 in subquery
where  c2 = subquery
let    c3 = subquery
select new{ result = subquery };

Are there any other locations where a subquery can be used?

Thank you


where subquery.Contains(value)
0

精彩评论

暂无评论...
验证码 换一张
取 消