gpt4 book ai didi

c# - 如何在 LINQ 中选择多个表?

转载 作者:行者123 更新时间:2023-11-30 19:46:06 25 4
gpt4 key购买 nike

在 SQL 中我有:

 SELECT gu.*, cu.*
FROM [gene_genunit] as gu, [cont_unitati] as cu
WHERE gu.COD_UNIT = cu.COD_UNIT

我有一个 WPF 应用程序。

最佳答案

LINQ 等价物是

from gu in context.Gene
join cu in Context.Cont
on gu.Code_Unit equals cu.Code_Unit
select new
{
gu,
cu
}

使用LinqPad生成查询并学习 Linq

关于c# - 如何在 LINQ 中选择多个表?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9273369/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com