gpt4 book ai didi

c# - 在 LINQ to SQL 查询中从多个表中检索数据

转载 作者:太空宇宙 更新时间:2023-11-03 10:50:30 26 4
gpt4 key购买 nike

我是 LINQ 的新手,我不确定如何从我的 SQL Server 数据库中的多个表中检索数据,这里是查询:

SELECT cp.*, tsd.Action, tsd.CurrencyPair 
from TradeStatsData tsd, CalculatedPrices cp
where tsd.TradeID = cp.TradeID and cp.Price is null and cp.ActiveTime < GETDATE()

数据库使用变量连接

我该怎么做?

最佳答案

你的 sql 查询在 LINQ 中会是这样的:

var result = from tsd in TradeStatsData
join cp in CalculatedPrices on tsd.TradeID equals cp.TradeID
where cp.Price == null && cp.ActiveTime < DateTime.Now
select new
{
CP = cp,
Action = tsd.Action,
CurrencyPair = tsd.CurrencyPair
};

关于c# - 在 LINQ to SQL 查询中从多个表中检索数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21588468/

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