Fixed
Details
Details
Assignee
Alex Zaytsev
Alex ZaytsevReporter
Alex Baker
Alex BakerLabels
Components
Fix versions
Affects versions
Priority
Who's Looking?
Open Who's Looking?
Created October 13, 2010 at 1:59 PM
Updated May 16, 2020 at 9:13 AM
Resolved May 16, 2020 at 9:13 AM
The attached sample identifies a number of issues in the LINQ provider related to the use of the "Join" expression. Specifically when performing outer joins or pre filtering the result set to be join in the join.
for example
select *
from table 1 a
left join table 2 b
on a.id = b.id
and b.start_date < getdate()