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
If you need to use one of this feature, you need to use the library [Entity Framework Extensions](https://entityframework-extensions.net/)
102
+
103
+
### EF Core & Client Evaluation
104
+
105
+
_Do not use this feature if Client Evaluation is enabled_
106
+
107
+
`Batch Update` use the SQL generated by EF Core. When a filter is made on client-side, it means the filtering happens in the application and not in the SQL executed.
108
+
109
+
In other words, even if you put a filter, all rows tables could be potentially updated if the filter is made on the client-side.
110
+
111
+
We always recommend to [disable the client evaluation](https://docs.microsoft.com/en-us/ef/core/querying/client-eval#optional-behavior-throw-an-exception-for-client-evaluation) to avoid performance issue in your application.
0 commit comments