Create Left Join In Link2Db

PHOTO EMBED

Mon Aug 22 2022 13:35:01 GMT+0000 (Coordinated Universal Time)

Saved by @HristoT #c#

var queryResult = (from s in this.Db.Poco./*Some poco*/.Where(predicate)
             join f in this.Db.Poco./*Some poco*/ on s./*something*/ equals f./*something*/ into gs
             from d_iz in gs.DefaultIfEmpty()
             select new
             {
                 /*use d_iz*/
               
             }).ToList();
content_copyCOPY