最佳答案
在尝试执行此查询时:
var query = from dpr in ctx.DPR_MM
join q in ctx.QOT on dpr.DPR_QOT_ID equals qot_id
join p in ctx.PAY_MM on new { q.QOT_SEC_ID, dpr.DPR_TS } equals new { p.PAY_SEC_ID, p.PAY_DATE }
where q.QOT_ID = qot_id
select new
{
dpr.dpr_ts,
dpr.dpr_close,
pay.First().pay_dividend
};
我得到了这个错误:
Join 子句中的一个表达式的类型不正确。 调用“ Join”时类型推断失败。
QOT_SEC_ID
是 decimal
型,PAY_SEC_ID
是 int32
型。
我不能在桌子上换。
无论我做什么,我不能改变它在模型的属性。 我尝试过这样转换类型:
join p in ctx.PAY on new { sec_id = (Int32)(q.QOT_SEC_ID), dpr.DPR_TS } equals new { sec_id = (Int32)p.PAY_SEC_ID, p.PAY_DATE }
但得到上面的错误。