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
/// Called just before EF intends to call <see cref="M:System.Data.Common.DbCommand.ExecuteReader" />.
26
-
/// </summary>
27
-
/// <param name="command">The command.</param>
28
-
/// <param name="eventData">Contextual information about the command and execution.</param>
29
-
/// <param name="result">
30
-
/// Represents the current result if one exists.
31
-
/// This value will have <see cref="P:Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult`1.HasResult" /> set to <see langword="true" /> if some previous
32
-
/// interceptor suppressed execution by calling <see cref="M:Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult`1.SuppressWithResult(`0)" />.
33
-
/// This value is typically used as the return value for the implementation of this method.
34
-
/// </param>
35
-
/// <returns>
36
-
/// If <see cref="P:Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult`1.HasResult" /> is false, the EF will continue as normal.
37
-
/// If <see cref="P:Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult`1.HasResult" /> is true, then EF will suppress the operation it
38
-
/// was about to perform and use <see cref="P:Microsoft.EntityFrameworkCore.Diagnostics.InterceptionResult`1.Result" /> instead.
39
-
/// An implementation of this method for any interceptor that is not attempting to change the result
40
-
/// is to return the <paramref name="result" /> value passed in.
0 commit comments