We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In a ASP.NET Core 8 project with EF Core 8.0.1, hovering over queries does not make the visualizer available.
Is there any other requirement we should be aware of?
The text was updated successfully, but these errors were encountered:
You need to assign the query to a variable to inspect it.
Sorry, something went wrong.
Right, thanks. It works.
But I get a timeout for the following query:
_context.Tests.Where(t => t.Visit.User.SMSAccount != null && t.Visit.User.SMSAccount.AutoReminder && t.Visit.Customer.Consent && (t.Visit.Customer.ContactBy == "Mobile" || t.Visit.Customer.ContactBy == "Email and Mobile") && !string.IsNullOrEmpty(t.Visit.Customer.Mobile) && !t.Visit.Pet.PassedAway && t.Reminder.HasValue && !t.ReminderSMSSent && DateTime.Now.Date.AddDays(t.Visit.User.SMSAccount.DaysBefore.Value) == t.Reminder) .Include(t => t.Visit.User.SMSAccount) .Include(t => t.Visit.Customer) .Include(t => t.Visit.Pet) .AsNoTracking();
Maybe this should be discussed separately, though.
This is tracked in #25
No branches or pull requests
In a ASP.NET Core 8 project with EF Core 8.0.1, hovering over queries does not make the visualizer available.
Is there any other requirement we should be aware of?
The text was updated successfully, but these errors were encountered: