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
EF Core interceptors fire in response to every command/query no matter whether it was a Linq query or one of the raw query methods (FromSqlRaw, FromSqlInterpolated, ExecuteSqlRaw, etc) The event argument passed to the interceptor method doesn't indicate the type of the query or source of the command
Proposed solution:
Add an (enum) property to CommandEventData indicating the source of the query/command.
Thoughts?
The text was updated successfully, but these errors were encountered:
EF Core interceptors fire in response to every command/query no matter whether it was a Linq query or one of the raw query methods (
FromSqlRaw
,FromSqlInterpolated
,ExecuteSqlRaw
, etc) The event argument passed to the interceptor method doesn't indicate the type of the query or source of the commandProposed solution:
Add an (enum) property to
CommandEventData
indicating the source of the query/command.Thoughts?
The text was updated successfully, but these errors were encountered: