I have a problem creating the following SQL Statement using LINQ & C#
select c.IDAddenda, c.Descripcion from CatAddendas c right join EmpresaAd
var RightJoin = from adds in dc.EmpresaAddendas join cats in CatAddendas on adds.IDAddenda equals cats.IDAddenda into joined from cats in joined.DefaultIfEmpty() select new { Id = cats.IDAddenda, Description = cats.Descripcion };