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
SQL tooling supports this sort of warnings but on efcore's generated SQL there's no visibility into the query patterns and existing indexes.
Proposal
Warn if properties used in conditions are not indexed.
varresult= q.Where(e => e.SomeProperty ==value);// warn 'missing index on SomeProperty'varresult= q.GroupBy(e => e.SomeProperty);// warn 'missing index on SomeProperty'
The text was updated successfully, but these errors were encountered:
Background and motivation
SQL tooling supports this sort of warnings but on efcore's generated SQL there's no visibility into the query patterns and existing indexes.
Proposal
Warn if properties used in conditions are not indexed.
The text was updated successfully, but these errors were encountered: