【发布时间】:2015-10-27 09:25:04
【问题描述】:
谁能解释一下如何为这个 SQL 查询编写等效的 LINQ 查询
select t1.Description,t2.Description,t1.ReponseTypeID
from tblResponseType t1
inner join tblPartnerServiceResponseType t2
on t1.ReponseTypeID = t2.ReponseTypeID
where t1.ReponseTypeID = (select ReponseTypeID
from tblPartnerServiceResponseType
where PartnerServiceID = 1);
我是新手
【问题讨论】:
标签: .net sql-server linq