Answers for "subquery in LInQ EF Core C#"

C#
0

subquery in LInQ EF Core C#

var accountBalance = context
    .AccountBalanceByDate
    .Where(a => 
        a.Date == context.AccountBalanceByDate
             .Where(b => b.AccountId == a.AccountId && b.Date < date).Max(b => b.Date));
Posted by: Guest on January-09-2022

C# Answers by Framework

Browse Popular Code Answers by Language