Created
February 11, 2025 13:55
-
-
Save vlapenkov/be0d2c43d95d27dae525e63bd127ce63 to your computer and use it in GitHub Desktop.
DefaultIfEmpty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var query = | |
from artId in artIds | |
join artIdArticle in _dbContext.DetArticle.Select(p => p.Artid) | |
on artId equals artIdArticle into outer | |
from itemArticle in outer.DefaultIfEmpty() | |
select new { artId, itemArticle }; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment