-2
select
pm.GenerationID, srv.ServiceID, srv.ServiceName, srv.ServiceDescription,
srv.IsProPack, pm.MonthlyPrice, pm.AnnualPrice, ss.freeExpirationDate
from
tbl_BILLING_PricingModels pm
inner join tbl_BILLING_Services srv on pm.ServiceID = srv.ServiceId
left join tbl_BILLING_SubscribedServices ss on srv.ServiceID = ss.ServiceId
and ss.ClientId='3B345E8B-3E6C-40E6-A4B8-E6371B717018'
where
pm.GenerationID = 5 order by srv.ServiceID
如何編寫linq查詢?如何在linq中用左連接寫sql查詢