0
我想在linq中的連接謂詞中使用兩個字段。如何添加其他字段?在linq連接謂詞中使用「和」
var Result = from Period in context.PeriodCosts
join Name in context.Name on Period.ID equals Name.PeriodID
/*"Problem is here ==> */and
Period.CCID equals Name.CCID"
select Name;