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
EF doesn't currently support translating to RIGHT JOIN in any way. With LeftJoin and RightJoin being introduced into .NET 10 (#35379), we should consider adding support for it.
Since adding full support across the query pipeilne may be expensive (that would be #35367), we could consider simply normalizing RightJoin to LeftJoin (flipping around the arguments) - this should be easily doable in preprocessing. Later, based on user feedback, we may do the proper implementation so that the SQL corresponds to the LINQ query.
The text was updated successfully, but these errors were encountered:
EF doesn't currently support translating to RIGHT JOIN in any way. With LeftJoin and RightJoin being introduced into .NET 10 (#35379), we should consider adding support for it.
Since adding full support across the query pipeilne may be expensive (that would be #35367), we could consider simply normalizing RightJoin to LeftJoin (flipping around the arguments) - this should be easily doable in preprocessing. Later, based on user feedback, we may do the proper implementation so that the SQL corresponds to the LINQ query.
The text was updated successfully, but these errors were encountered: