We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e934111 commit 48c6342Copy full SHA for 48c6342
EntityFrameworkExtras.Shared/DatabaseExtensions.EFCore3x.cs
@@ -156,9 +156,9 @@ public static async Task<IEnumerable<T>> ExecuteStoredProcedureAsync<T>(this Dat
156
157
var context = (DbContext)contextField.GetValue(database);
158
159
- var entityType = FindModelEntityType(context, typeof(T));
+ var entityType = FindModelEntityType(context, typeof(T));
160
161
- if (entityType == null)
+ if (entityType == null)
162
{
163
return await database.InternalExecuteStoredProcedureAsync<T>(storedProcedure).ConfigureAwait(false);
164
}
0 commit comments