gpt4 book ai didi

c# - 使用LINQ查询多个表,将结果抓取到字典

转载 作者:行者123 更新时间:2023-12-04 12:15:28 25 4
gpt4 key购买 nike

我有这个简单的 SQL:

SELECT name, value 
FROM table1 t1, table2 t2
WHERE t1.id = t2.id
AND t1.id = 123
如何在 C# 中将其转换为 LINQ,以便结果在 Dictionary 中?

最佳答案

我猜你在使用 Entity Framework ?
你能用RelationShips吗?反而?
或者像这样:

var query = from t1 in context.Table1
from t2 in context.Table2
where t1.Id == t2.Id
select new { t1.name, t2.value};

var result = query.ToList();
var dir = result.ToDictionary(x => x.name, x => x.value);
https://docs.microsoft.com/en-us/ef/core/querying/complex-query-operators

关于c# - 使用LINQ查询多个表,将结果抓取到字典,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68363389/

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