Ling to sql 多表查询,多个条件进行关联
程序员文章站
2022-08-08 17:30:26
使用多表查询进行关联时,提示 join子句中其中一个表达式的类型不正确,注意字段类型和名称要一致,否则join时提示语法错误,错误截图如下 ......
使用多表查询进行关联时,提示 join子句中其中一个表达式的类型不正确,注意字段类型和名称要一致,否则join时提示语法错误,错误截图如下
var incomedetails = from a in _postgredbcontext.merchant_daily_income_detail join b in _postgredbcontext.merchant_daily_invoice on new { a.merchant_id, a.date.date } equals new { b.merchant_id, b.date.date } select a ;