In EF7 there is a new ExecuteUpdate function to do updates on a table without retrieving the data from the server first. Is it possible to do an update from select with this method in any way where it is using data from another table? To be more concrete can i express this SQL in EF:
UPDATE
Table_A
SET
Table_A.col1 = Table_B.col1,
Table_A.col2 = Table_B.col2
FROM
Some_Table AS Table_A
INNER JOIN Other_Table AS Table_B
ON Table_A.id = Table_B.id
WHERE
Table_A.col3 = 'cool'