CROSS APPLY within LINQ
Is there a tool I can use to directly map SQL to LINQ? I have a query that I'm not sure how to translate. Here's the SQL:
I can't figure out how to do
This was my attempt, but it creates a horrible web of SQL that traverses the entire
The only way we've found that works so far is to not add the
I can't figure out how to do
CROSS APPLY within LINQ.This was my attempt, but it creates a horrible web of SQL that traverses the entire
Assignments table just to find a single record.The only way we've found that works so far is to not add the
LatestFile here, and run a client-side foreach loop after we get the results.