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
UPDATE [o0]
SET [o0].[Value] = N'SomeValue'FROM [Owner] AS [o]
INNER JOIN [OwnedCollection] AS [o0] ON [o].[Id] = [o0].[OwnerId]
The SQL is overly-convoluted: it starts with the Owner table (since that's the query root in the LINQ query), although there's no need to reference that table at all in this query (this is because no OwnedCollections can ever exist without them having an Owner).
It's unclear at this point whether this is somehow specific to bulk updates, or a general query issue related to SelectMany(), etc.
The text was updated successfully, but these errors were encountered:
For example, test Replace_ColumnExpression_in_column_setter:
... produces the following SQL:
The SQL is overly-convoluted: it starts with the Owner table (since that's the query root in the LINQ query), although there's no need to reference that table at all in this query (this is because no OwnedCollections can ever exist without them having an Owner).
It's unclear at this point whether this is somehow specific to bulk updates, or a general query issue related to SelectMany(), etc.
The text was updated successfully, but these errors were encountered: