I need multiple condition in Linq Join.
What could be the equivalent of
select * 
from tblOfferingBillingBehaviorMapping billMap
inner join tblLookUpBillingBehavior lkpBill 
    on (billMap.LkpBillingBehaviorId =lkpBill.LkpBillingBehaviorId 
        or billMap.LkpBillingBehaviorId =lkpBill.ParentRootId) 
 
     
     
    