Left outer join to include null values linq lambda – Asp.net
I have one table in database named Balance and a list of dates as follows: List<string> allDates = { "2021-01-02", "2021-01-03", "2021-01-04" } Balance table: Id, Amount, BalanceDate 1, 233, "2021-01-02" 2, 442, "2021-01-03 I need to fetch the records…