You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
LeftJoin and RightJoin are being introduced into .NET 10 (dotnet/runtime#110292); support for the new LeftJoin operator in EF is tracked by #12793. For RightJoin, we should eventually implement actual support for it (i.e. translate LINQ RightJoin to SQL RIGHT JOIN). However, until that's done, we can provide a default implementation that simply transforms RightJoin to LeftJoin.
The text was updated successfully, but these errors were encountered:
LeftJoin and RightJoin are being introduced into .NET 10 (dotnet/runtime#110292); support for the new LeftJoin operator in EF is tracked by #12793. For RightJoin, we should eventually implement actual support for it (i.e. translate LINQ RightJoin to SQL RIGHT JOIN). However, until that's done, we can provide a default implementation that simply transforms RightJoin to LeftJoin.
The text was updated successfully, but these errors were encountered: